Home
last modified time | relevance | path

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

1234567

/PHP-7.2/ext/pdo_oci/
H A Doci_driver.c229 if (H->charset && H->env) { in oci_handle_closer()
230 OCIHandleFree(H->env, OCI_HTYPE_ENV); in oci_handle_closer()
231 H->env = NULL; in oci_handle_closer()
278 OCIHandleAlloc(H->env, (dvoid*)&S->stmt, OCI_HTYPE_STMT, 0, NULL); in oci_handle_preparer()
281 OCIHandleAlloc(H->env, (dvoid*)&S->err, OCI_HTYPE_ERROR, 0, NULL); in oci_handle_preparer()
327 OCIHandleAlloc(H->env, (dvoid*)&stmt, OCI_HTYPE_STMT, 0, NULL); in oci_handle_doer()
696 if (H->env == NULL) { in pdo_oci_handle_factory()
698 H->env = pdo_oci_Env; in pdo_oci_handle_factory()
702 OCIHandleAlloc(H->env, (dvoid **)&H->err, OCI_HTYPE_ERROR, 0, NULL); in pdo_oci_handle_factory()
705 OCIHandleAlloc(H->env, (dvoid **)&H->server, OCI_HTYPE_SERVER, 0, NULL); in pdo_oci_handle_factory()
[all …]
/PHP-7.2/ext/curl/tests/
H A Dskipif.inc5 die("skip PHP_CURL_HTTP_REMOTE_SERVER env variable is not defined");
/PHP-7.2/ext/standard/
H A Dproc_open.h48 php_process_env_t env; member
/PHP-7.2/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()
/PHP-7.2/sapi/cli/tests/
H A Dbug67741.phpt11 #!/bin/env php
/PHP-7.2/sapi/phpdbg/
H A D.travis.yml3 env:
/PHP-7.2/win32/build/
H A DMakefile.phpize45 test: set-tmp-env
48 run: set-tmp-env
H A DMakefile176 test: set-tmp-env
179 run: set-tmp-env
182 test: set-tmp-env
185 run: set-tmp-env
189 build-snap: set-tmp-env generated_files
/PHP-7.2/ext/fileinfo/tests/
H A Dbug71434.phpt7 $a='#!env python
/PHP-7.2/ext/phar/tests/tar/
H A Dbug67761.phpt17 #!/usr/bin/env php
/PHP-7.2/sapi/fpm/tests/
H A Dskipif.inc6 // Running as root is not allowed without TEST_FPM_RUN_AS_ROOT env
/PHP-7.2/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-7.2/ext/oci8/
H A Doci8.c946 if (OCI_G(env) in PHP_INI_END()
952 OCI_G(env) = NULL; in PHP_INI_END()
990 OCIHandleFree((dvoid *) OCI_G(env), OCI_HTYPE_ENV); in PHP_INI_END()
992 OCI_G(env) = NULL; in PHP_INI_END()
1011 if (OCI_G(env)) { in php_oci_cleanup_global_handles()
1013 OCI_G(env) = NULL; in php_oci_cleanup_global_handles()
1725 if (OCI_G(env) == NULL) { in php_oci_do_connect_ex()
1727 if (OCI_G(env) == NULL) { in php_oci_do_connect_ex()
2247 if (connection->env) { in php_oci_connection_close()
3222 connection->env = actual_spool->env; in php_oci_create_session()
[all …]
/PHP-7.2/main/
H A Dfastcgi.c234 fcgi_hash env; member
912 fcgi_hash_init(&req->env); in fcgi_init_request()
918 fcgi_hash_destroy(&req->env); in fcgi_destroy_request()
1061 fcgi_hash_clean(&req->env); in fcgi_read_request()
1172 q = req->env.list; in fcgi_read_request()
1274 fcgi_hash_clean(&req->env); in fcgi_close()
1693 return fcgi_hash_get(&req->env, hash_value, (char*)var, var_len, &val_len);
1700 fcgi_hash_del(&req->env, FCGI_HASH_FUNC(var, var_len), var, var_len);
1710 fcgi_hash_del(&req->env, hash_value, var, var_len);
1713 return fcgi_hash_set(&req->env, hash_value, var, var_len, val, (unsigned int)strlen(val));
[all …]
H A Dphp_variables.c530 char **env, *p, *t = buf; in _php_import_environment_variables() local
534 for (env = environ; env != NULL && *env != NULL; env++) { in _php_import_environment_variables()
535 p = strchr(*env, '='); in _php_import_environment_variables()
539 nlen = p - *env; in _php_import_environment_variables()
544 memcpy(t, *env, nlen); in _php_import_environment_variables()
/PHP-7.2/ext/date/tests/
H A Dbug13142.phpt8 die("skip. set TZ env is not supported at runtime.");
/PHP-7.2/ext/soap/tests/
H A Dbug73037.phpt109 $pos = strpos($out, "<env:Text>");
114 $pos0 = $pos + strlen("<env:Text>");
115 $pos = strpos($out, "</env:Text>");
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_conf.h90 struct key_value_s *env; member
H A Dfpm_env.c149 for (kv = wp->config->env; kv; kv = kv->next) { in fpm_env_init_child()
169 for (kv = wp->config->env; kv; kv = kv->next) { in fpm_env_conf_wp()
H A Dfpm_log.c235 char *env = fcgi_getenv((fcgi_request*) SG(server_context), format, strlen(format)); in fpm_log_write() local
236 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", env ? env : "-"); in fpm_log_write()
/PHP-7.2/
H A D.appveyor.yml21 # ext and env setup for tests
/PHP-7.2/ext/imap/
H A Dphp_imap.c2709 ENVELOPE *env; in PHP_FUNCTION() local
2715 env = mail_newenvelope(); in PHP_FUNCTION()
2724 addresstmp = env->to; in PHP_FUNCTION()
2743 mail_free_envelope(&env); in PHP_FUNCTION()
3478 ENVELOPE *env; in PHP_FUNCTION() local
3485 if (env->subject) { in PHP_FUNCTION()
3488 if (env->from) { in PHP_FUNCTION()
3489 env->from->next=NULL; in PHP_FUNCTION()
3495 if (env->to) { in PHP_FUNCTION()
3502 if (env->date) { in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/standard/tests/file/
H A Dbug72035.phpt23 /* Need to run CGI with the env reset. */
/PHP-7.2/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-7.2/TSRM/
H A Dtsrm_win32.h103 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env);

Completed in 65 milliseconds

1234567