Searched defs:is_persistent (Results 1 - 10 of 10) sorted by relevance
| /PHP_5_5/ext/pdo/ |
| H A D | pdo_dbh.c | 205 zend_bool is_persistent = FALSE; local 290 is_persistent = 1; 293 is_persistent = Z_LVAL_PP(v) ? 1 : 0; 300 if (is_persistent) { 325 pdbh->is_persistent = 1; 363 dbh->data_source = (const char*)pestrdup(colon + 1, is_persistent); 364 dbh->username = username ? pestrdup(username, is_persistent) : NULL; 365 dbh->password = password ? pestrdup(password, is_persistent) : NULL; 383 if (is_persistent) { 787 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 446 unsigned is_persistent:1; member in struct:_pdo_dbh_t
|
| /PHP_5_5/ext/soap/ |
| H A D | php_sdl.h | 64 zend_bool is_persistent; member in struct:_sdl
|
| /PHP_5_5/ext/standard/ |
| H A D | proc_open.h | 49 int is_persistent; member in struct:php_process_handle
|
| H A D | proc_open.c | 75 static php_process_env_t _php_array_to_envp(zval *environment, int is_persistent TSRMLS_DC) 99 env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent); 101 env.envp = (char *) pecalloc(4, 1, is_persistent); 134 ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent); 136 p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent); 189 static void _php_free_envp(php_process_env_t env, int is_persistent) argument 193 pefree(env.envarray, is_persistent); 197 pefree(env.envp, is_persistent); 255 _php_free_envp(proc->env, proc->is_persistent); 256 pefree(proc->command, proc->is_persistent); 464 int is_persistent = 0; /* TODO: ensure that persistent procs will work */ local [all...] |
| /PHP_5_5/main/ |
| H A D | php_streams.h | 197 int is_persistent; member in struct:_php_stream 485 #define php_stream_is_persistent(stream) (stream)->is_persistent
|
| /PHP_5_5/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_5/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...] |
| /PHP_5_5/ext/oci8/ |
| H A D | php_oci8_int.h | 136 unsigned is_persistent:1; /* self-descriptive */ member in struct:__anon2
|
Completed in 14 milliseconds