Home
last modified time | relevance | path

Searched refs:env (Results 101 – 125 of 153) sorted by relevance

1234567

/PHP-5.5/ext/pdo_odbc/
H A Dodbc_driver.c89 eh = H->env; in pdo_odbc_error()
137 SQLFreeHandle(SQL_HANDLE_ENV, H->env); in odbc_handle_closer()
138 H->env = NULL; in odbc_handle_closer()
402 SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &H->env); in pdo_odbc_handle_factory()
403 rc = SQLSetEnvAttr(H->env, SQL_ATTR_ODBC_VERSION, (void*)SQL_OV_ODBC3, 0); in pdo_odbc_handle_factory()
412 rc = SQLSetEnvAttr(H->env, SQL_ATTR_CP_MATCH, (void*)pdo_odbc_pool_mode, 0); in pdo_odbc_handle_factory()
420 rc = SQLAllocHandle(SQL_HANDLE_DBC, H->env, &H->dbc); in pdo_odbc_handle_factory()
H A Dphp_pdo_odbc_int.h129 PDO_ODBC_HENV env; member
/PHP-5.5/ext/curl/tests/
H A Dskipif.inc5 die("skip PHP_CURL_HTTP_REMOTE_SERVER env variable is not defined");
/PHP-5.5/ext/standard/
H A Dproc_open.h50 php_process_env_t env; member
H A Dinfo.c903 char **env, *tmp1, *tmp2; in php_print_info() local
1088 for (env=environ; env!=NULL && *env !=NULL; env++) { in php_print_info()
1089 tmp1 = estrdup(*env); in php_print_info()
/PHP-5.5/sapi/cli/tests/
H A Dbug67741.phpt11 #!/bin/env php
/PHP-5.5/ext/phar/tests/tar/
H A Dbug67761.phpt17 #!/usr/bin/env php
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c363 fcgi_hash env; member
763 fcgi_hash_init(&req->env); in fcgi_init_request()
770 fcgi_hash_destroy(&req->env); in fcgi_destroy_request()
998 q = req->env.list; in fcgi_read_request()
1100 fcgi_hash_clean(&req->env); in fcgi_close()
1474 return fcgi_hash_get(&req->env, FCGI_HASH_FUNC(var, var_len), (char*)var, var_len, &val_len);
1481 return fcgi_hash_get(&req->env, hash_value, (char*)var, var_len, &val_len);
1488 fcgi_hash_del(&req->env, FCGI_HASH_FUNC(var, var_len), var, var_len);
1498 fcgi_hash_del(&req->env, hash_value, var, var_len);
1501 return fcgi_hash_set(&req->env, hash_value, var, var_len, val, strlen(val));
[all …]
/PHP-5.5/ext/calendar/tests/
H A Dunixtojd.phpt12 // putenv (basic_functions.c) does call tzset() when the env var being put is 'TZ'
17 // -since putenv() is written to call tzset() when env var is TZ, I assume that putenv("TZ=UTC") …
/PHP-5.5/ext/oci8/
H A Doci8.c1084 if (OCI_G(env) in PHP_INI_END()
1090 OCI_G(env) = NULL; in PHP_INI_END()
1128 OCIHandleFree((dvoid *) OCI_G(env), OCI_HTYPE_ENV); in PHP_INI_END()
1130 OCI_G(env) = NULL; in PHP_INI_END()
1148 if (OCI_G(env)) { in php_oci_cleanup_global_handles()
1150 OCI_G(env) = NULL; in php_oci_cleanup_global_handles()
1815 if (OCI_G(env) == NULL) { in php_oci_do_connect_ex()
1817 if (OCI_G(env) == NULL) { in php_oci_do_connect_ex()
2312 if (connection->env) { in php_oci_connection_close()
3132 connection->env = actual_spool->env; in php_oci_create_session()
[all …]
H A Dphp_oci8_int.h113 OCIEnv *env; /*env of this session pool */ member
122 OCIEnv *env; /* private env handle */ member
492 OCIEnv *env; /* global environment handle */ variable
H A Doci8_lob.c75 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIDescriptorAlloc, (connection->env, (dvoid*)&(descriptor->de… in php_oci_lob_create()
299 …PHP_OCI_CALL_RETURN(connection->errcode, OCILobCharSetId, (connection->env, connection->err, descr… in php_oci_lob_read()
313 …PHP_OCI_CALL_RETURN(connection->errcode, OCINlsNumericInfoGet, (connection->env, connection->err, … in php_oci_lob_read()
607 …PHP_OCI_CALL_RETURN(connection->errcode, OCILobIsTemporary, (connection->env,connection->err, desc… in php_oci_temp_lob_close()
884 …PHP_OCI_CALL_RETURN(connection->errcode, OCILobIsEqual, (connection->env, first_lob, second_lob, r…
/PHP-5.5/ext/date/tests/
H A Dbug13142.phpt8 die("skip. set TZ env is not supported at runtime.");
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_conf.h88 struct key_value_s *env; member
H A Dfpm_env.c150 for (kv = wp->config->env; kv; kv = kv->next) { in fpm_env_init_child()
170 for (kv = wp->config->env; kv; kv = kv->next) { in fpm_env_conf_wp()
H A Dfpm_log.c236 char *env = fcgi_getenv((fcgi_request*) SG(server_context), format, strlen(format)); in fpm_log_write() local
237 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", env ? env : "-"); in fpm_log_write()
H A Dfastcgi.h112 HashTable *env; member
/PHP-5.5/main/
H A Dphp_variables.c421 char **env, *p, *t = buf; in _php_import_environment_variables() local
425 for (env = environ; env != NULL && *env != NULL; env++) { in _php_import_environment_variables()
426 p = strchr(*env, '='); in _php_import_environment_variables()
430 nlen = p - *env; in _php_import_environment_variables()
435 memcpy(t, *env, nlen); in _php_import_environment_variables()
/PHP-5.5/sapi/litespeed/
H A Dlsapi_main.c242 char **env, *p, *t = buf; in litespeed_php_import_environment_variables() local
286 for (env = environ; env != NULL && *env != NULL; env++) { in litespeed_php_import_environment_variables()
287 p = strchr(*env, '='); in litespeed_php_import_environment_variables()
291 nlen = p - *env; in litespeed_php_import_environment_variables()
296 memcpy(t, *env, nlen); in litespeed_php_import_environment_variables()
/PHP-5.5/ext/imap/
H A Dphp_imap.c2644 ENVELOPE *env; in PHP_FUNCTION() local
2650 env = mail_newenvelope(); in PHP_FUNCTION()
2659 addresstmp = env->to; in PHP_FUNCTION()
2679 mail_free_envelope(&env); in PHP_FUNCTION()
3415 ENVELOPE *env; in PHP_FUNCTION() local
3423 if (env->subject) { in PHP_FUNCTION()
3426 if (env->from) { in PHP_FUNCTION()
3427 env->from->next=NULL; in PHP_FUNCTION()
3433 if (env->to) { in PHP_FUNCTION()
3440 if (env->date) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/pdo_odbc/tests/
H A Dcommon.phpt23 // try to use common PDO env vars, instead of PDO_ODBC specific
67 # other magic autodetection here, eg: for DB2 by inspecting env
/PHP-5.5/
H A D.travis.yml27 env:
/PHP-5.5/TSRM/
H A Dtsrm_win32.h98 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env TSRMLS_DC…
/PHP-5.5/ext/pdo_oci/
H A Dphp_pdo_oci_int.h34 OCIEnv *env; member
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c1674 table_entry *env; in PHP_MINFO_FUNCTION() local
1684 env = (table_entry *)env_arr->elts; in PHP_MINFO_FUNCTION()
1686 if (env[i].key) { in PHP_MINFO_FUNCTION()
1687 php_info_print_table_row(2, env[i].key, env[i].val); in PHP_MINFO_FUNCTION()
1692 env = (table_entry *)env_arr->elts; in PHP_MINFO_FUNCTION()
1694 if (env[i].key) { in PHP_MINFO_FUNCTION()
1695 php_info_print_table_row(2, env[i].key, env[i].val); in PHP_MINFO_FUNCTION()

Completed in 86 milliseconds

1234567