Searched refs:hashkey (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_dbh.c | 278 char *hashkey = NULL; local 285 plen = spprintf(&hashkey, 0, "PDO:DBH:DSN=%s:%s:%s:%s", data_source, 293 plen = spprintf(&hashkey, 0, "PDO:DBH:DSN=%s:%s:%s", data_source, 301 if (SUCCESS == zend_hash_find(&EG(persistent_list), hashkey, plen+1, (void*)&le)) { 328 memcpy((char *)pdbh->persistent_id, hashkey, plen+1); 354 if (hashkey) { 355 efree(hashkey);
|
| /PHP_5_3/ext/sqlite/ |
| H A D | sqlite.c | 1548 char *filename, *fullpath, *hashkey; local 1581 hashkeylen = spprintf(&hashkey, 0, "sqlite_pdb_%s:%ld", fullpath, mode); 1584 if (SUCCESS == zend_hash_find(&EG(persistent_list), hashkey, hashkeylen+1, (void*)&le)) { 1614 php_sqlite_open(fullpath, (int)mode, hashkey, return_value, errmsg, NULL TSRMLS_CC); 1617 efree(hashkey); 3238 char *hashkey; local 3242 hashkeylen = spprintf(&hashkey, 0, "%s-%s", is_agg ? "agg" : "reg", funcname); 3245 if (SUCCESS == zend_hash_find(&db->callbacks, hashkey, hashkeylen+1, (void*)&alloc_funcs)) { 3267 ret = SUCCESS == zend_hash_update(&db->callbacks, hashkey, hashkeylen+1, 3271 efree(hashkey); [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | fsock.c | 41 char *hashkey = NULL; local 55 spprintf(&hashkey, 0, "pfsockopen__%s:%ld", host, port); 80 STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, hashkey, &tv, NULL, &errstr, &err); 89 if (hashkey) { 90 efree(hashkey);
|
| H A D | streamsfuncs.c | 94 char *hashkey = NULL; local 110 spprintf(&hashkey, 0, "stream_socket_client__%s", host); 134 hashkey, &tv, context, &errstr, &err); 145 if (hashkey) { 146 efree(hashkey);
|
Completed in 11 milliseconds