Lines Matching refs:l

285 	char const *co, *l, *r;  in firebird_handle_quoter()  local
304 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
305 strncpy(c, l, r-l+1); in firebird_handle_quoter()
306 c += (r-l+1); in firebird_handle_quoter()
312 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
405 zend_long l, pindex = -1; in firebird_alloc_prepare_stmt() local
433 for (l = in_quote = in_param = 0; l <= sql_len; ++l) { in firebird_alloc_prepare_stmt()
434 if ( !(in_quote ^= (sql[l] == '\''))) { in firebird_alloc_prepare_stmt()
436 switch (sql[l]) { in firebird_alloc_prepare_stmt()
440 *ppname++ = sql[l]; in firebird_alloc_prepare_stmt()
447 … if ((in_param &= ((sql[l] >= 'A' && sql[l] <= 'Z') || (sql[l] >= 'a' && sql[l] <= 'z') in firebird_alloc_prepare_stmt()
448 … || (sql[l] >= '0' && sql[l] <= '9') || sql[l] == '_' || sql[l] == '-'))) { in firebird_alloc_prepare_stmt()
451 *ppname++ = sql[l]; in firebird_alloc_prepare_stmt()
463 *c++ = sql[l]; in firebird_alloc_prepare_stmt()
584 HMODULE l = GetModuleHandle("fbclient"); in firebird_handle_get_attribute() local
586 if (!l) { in firebird_handle_get_attribute()
589 info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); in firebird_handle_get_attribute()
624 zend_long i = 0, l, sqlcode = isc_sqlcode(s); in pdo_firebird_fetch_error_func() local
629 while ((sizeof(buf)>(i+2))&&(l = fb_interpret(&buf[i],(sizeof(buf)-i-2),&s))) { in pdo_firebird_fetch_error_func()
630 i += l; in pdo_firebird_fetch_error_func()