Searched defs:is_persistent (Results 1 - 11 of 11) sorted by relevance
| /PHP_5_3/ext/oci8/ |
| H A D | php_oci8_int.h | 136 unsigned is_persistent:1; /* self-descriptive */ member in struct:__anon109
|
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_dbh.c | 205 zend_bool is_persistent = FALSE; local 289 is_persistent = 1; 292 is_persistent = Z_LVAL_PP(v) ? 1 : 0; 299 if (is_persistent) { 324 pdbh->is_persistent = 1; 361 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); 362 dbh->username = username ? pestrdup(username, is_persistent) : NULL; 363 dbh->password = password ? pestrdup(password, is_persistent) : NULL; 381 if (is_persistent) { 781 if (dbh->is_persistent) { [all...] |
| H A D | php_pdo_driver.h | 230 * instance. You MUST respect dbh->is_persistent and pass that flag to 448 unsigned is_persistent:1; member in struct:_pdo_dbh_t
|
| /PHP_5_3/ext/soap/ |
| H A D | php_sdl.h | 64 zend_bool is_persistent; member in struct:_sdl
|
| /PHP_5_3/ext/sqlite/ |
| H A D | sqlite.c | 153 zend_bool is_persistent; member in struct:php_sqlite_db 684 pefree(db, db->is_persistent); 1497 db->is_persistent = persistent_id ? 1 : 0; 1501 zend_hash_init(&db->callbacks, 0, NULL, php_sqlite_callback_dtor, db->is_persistent);
|
| /PHP_5_3/ext/standard/ |
| H A D | proc_open.c | 76 static php_process_env_t _php_array_to_envp(zval *environment, int is_persistent TSRMLS_DC) 100 env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent); 102 env.envp = (char *) pecalloc(4, 1, is_persistent); 135 ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent); 137 p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent); 217 static void _php_free_envp(php_process_env_t env, int is_persistent) argument 221 pefree(env.envarray, is_persistent); 225 pefree(env.envp, is_persistent); 273 _php_free_envp(proc->env, proc->is_persistent); 274 pefree(proc->command, proc->is_persistent); 525 int is_persistent = 0; /* TODO: ensure that persistent procs will work */ local [all...] |
| H A D | proc_open.h | 49 int is_persistent; member in struct:php_process_handle
|
| /PHP_5_3/main/ |
| H A D | php_streams.h | 199 int is_persistent; member in struct:_php_stream 480 #define php_stream_is_persistent(stream) (stream)->is_persistent
|
| /PHP_5_3/main/streams/ |
| H A D | filter.c | 75 int is_persistent = php_stream_is_persistent(stream); local 78 bucket = (php_stream_bucket*)pemalloc(sizeof(php_stream_bucket), is_persistent); 86 if (is_persistent && !buf_persistent) { 103 bucket->is_persistent = is_persistent; 127 retval = (php_stream_bucket*)pemalloc(sizeof(php_stream_bucket), bucket->is_persistent); 130 retval->buf = pemalloc(retval->buflen, retval->is_persistent); 143 *left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); 144 *right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); 150 (*left)->buf = pemalloc(length, in->is_persistent); [all...] |
| H A D | php_stream_filter_api.h | 52 int is_persistent; member in struct:_php_stream_bucket 113 int is_persistent; member in struct:_php_stream_filter
|
| /PHP_5_3/ext/phar/ |
| H A D | phar_internal.h | 300 unsigned int is_persistent:1; member in struct:_phar_entry_info 347 unsigned int is_persistent:1; member in struct:_phar_archive_data 364 if (!entry->is_persistent) { 372 if (!entry->is_persistent) { 380 if (!entry->phar->is_persistent) { 390 if (!entry->phar->is_persistent) { 400 if (!phar->is_persistent) { 408 if (!phar->is_persistent) { 416 if (!phar->is_persistent) { 426 if (!phar->is_persistent) { [all...] |
Completed in 24 milliseconds