Lines Matching refs:l

580 	ibase_tr_list *l;  in _php_ibase_commit_link()  local
584 for (l = link->tr_list; l != NULL; ++i) { in _php_ibase_commit_link()
585 ibase_tr_list *p = l; in _php_ibase_commit_link()
612 l = l->next; in _php_ibase_commit_link()
678 ibase_tr_list **l; in _php_ibase_free_trans() local
679 for (l = &trans->db_link[i]->tr_list; *l != NULL; l = &(*l)->next) { in _php_ibase_free_trans()
680 if ( (*l)->trans == trans) { in _php_ibase_free_trans()
681 ibase_tr_list *p = *l; in _php_ibase_free_trans()
682 *l = p->next; in _php_ibase_free_trans()
825 HMODULE l = GetModuleHandle("fbclient"); in PHP_MINFO_FUNCTION() local
827 if (!l && !(l = GetModuleHandle("gds32"))) { in PHP_MINFO_FUNCTION()
830 info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); in PHP_MINFO_FUNCTION()
956 zend_long l; in _php_ibase_connect() local
976 if ((l = INI_INT("ibase.max_links")) != -1 && IBG(num_links) >= l) { in _php_ibase_connect()
987 if (!persistent || ((l = INI_INT("ibase.max_persistent") != -1) && IBG(num_persistent) >= l)) { in _php_ibase_connect()
1086 ibase_tr_list *l; in PHP_FUNCTION() local
1115 for (l = ib_link->tr_list; l != NULL; l = l->next) { in PHP_FUNCTION()
1116 if (l->trans != NULL) l->trans->handle = 0; in PHP_FUNCTION()
1255 ibase_tr_list **l; in PHP_FUNCTION() local
1266 for (l = &ib_link[i]->tr_list; *l != NULL; l = &(*l)->next); in PHP_FUNCTION()
1267 *l = (ibase_tr_list *) emalloc(sizeof(ibase_tr_list)); in PHP_FUNCTION()
1268 (*l)->trans = ib_trans; in PHP_FUNCTION()
1269 (*l)->next = NULL; in PHP_FUNCTION()
1463 int l; in PHP_FUNCTION() local
1465 l = spprintf(&res, 0, "%" LL_MASK "d", result); in PHP_FUNCTION()
1466 RETURN_STRINGL(res, l); in PHP_FUNCTION()