Lines Matching refs:l

247 	char const *co, *l, *r;  in firebird_handle_quoter()  local
266 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
267 strncpy(c, l, r-l+1); in firebird_handle_quoter()
268 c += (r-l+1); in firebird_handle_quoter()
274 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
367 zend_long l, pindex = -1; in firebird_alloc_prepare_stmt() local
395 for (l = in_quote = in_param = 0; l <= sql_len; ++l) { in firebird_alloc_prepare_stmt()
396 if ( !(in_quote ^= (sql[l] == '\''))) { in firebird_alloc_prepare_stmt()
398 switch (sql[l]) { in firebird_alloc_prepare_stmt()
402 *ppname++ = sql[l]; in firebird_alloc_prepare_stmt()
409 … if ((in_param &= ((sql[l] >= 'A' && sql[l] <= 'Z') || (sql[l] >= 'a' && sql[l] <= 'z') in firebird_alloc_prepare_stmt()
410 … || (sql[l] >= '0' && sql[l] <= '9') || sql[l] == '_' || sql[l] == '-'))) { in firebird_alloc_prepare_stmt()
413 *ppname++ = sql[l]; in firebird_alloc_prepare_stmt()
425 *c++ = sql[l]; in firebird_alloc_prepare_stmt()
557 HMODULE l = GetModuleHandle("fbclient"); in firebird_handle_get_attribute() local
559 if (!l) { in firebird_handle_get_attribute()
562 info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); in firebird_handle_get_attribute()
597 zend_long i = 0, l, sqlcode = isc_sqlcode(s); in pdo_firebird_fetch_error_func() local
602 while ((sizeof(buf)>(i+2))&&(l = fb_interpret(&buf[i],(sizeof(buf)-i-2),&s))) { in pdo_firebird_fetch_error_func()
603 i += l; in pdo_firebird_fetch_error_func()