Home
last modified time | relevance | path

Searched refs:env (Results 126 – 150 of 153) sorted by relevance

1234567

/PHP-5.5/ext/pdo_pgsql/tests/
H A Dbug69362.phpt11 if (empty($dsn)) die('skip no dsn found in env');
H A Dbug62479.phpt11 if (empty($dsn)) die('skip no dsn found in env');
/PHP-5.5/ext/mysqli/tests/
H A Dconnect.inc85 …* @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS…
106 * @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS)
/PHP-5.5/ext/pdo/
H A Dconfig.m415 # and the PHP_PEAR_VERSION env var is not set. That implies
/PHP-5.5/ext/mysql/tests/
H A Dmysql_connect.phpt91 printf("[012] Usage of env MYSQL_TCP_PORT failed\n") ;
97 printf("[013] Usage of env MYSQL_TCP_PORT=%d should have failed\n", $port + 1) ;
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.h326 extern void onig_scan_env_set_error_string P_((ScanEnv* env, int ecode, UChar* arg, UChar* arg_en…
342 …se_make_tree P_((Node** root, const UChar* pattern, const UChar* end, regex_t* reg, ScanEnv* env));
H A DHISTORY1374 remove env->option == option check in parse_effect().
1375 change env->option for dynamic option in parse_exp().
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c1593 char **env, *p, *q, *var, *val, *t = buf; local
1597 for (env = environ; env != NULL && *env != NULL; env++) {
1598 val = strchr(*env, '=');
1602 var_len = val - *env;
1607 var = *env;
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in394 ; it must be associated with embraces to specify the name of the env
485 ; by clearing the environment in workers before env vars specified in this
502 ; Default Value: clean env
503 ;env[HOSTNAME] = $HOSTNAME
504 ;env[PATH] = /usr/local/bin:/usr/bin:/bin
505 ;env[TMP] = /tmp
506 ;env[TMPDIR] = /tmp
507 ;env[TEMP] = /tmp
/PHP-5.5/
H A DREADME.TESTING283 vars that are used for CGI emulation, or simply to set env vars
101 $this->env all environment variables that will get passed to the test
H A Dphp.ini-development745 ; http://php.net/cgi.redirect-status-env
/PHP-5.5/TSRM/
H A Dtsrm_win32.c457 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env TSRMLS_DC) in popen_ex()
542 …, NULL, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, cwd, &startup, &pr… in popen_ex()
545 …res = CreateProcess(NULL, cmd, &security, &security, security.bInheritHandle, dwCreateFlags, env, … in popen_ex()
/PHP-5.5/ext/standard/
H A Dbasic_functions.c1901 ZEND_ARG_INFO(0, env) /* ARRAY_INFO(0, env, 1) */
3444 char **env; in php_putenv_destructor()
3446 for (env = environ; env != NULL && *env != NULL; env++) { in php_putenv_destructor()
3447 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe->key_len] == '=') { /* found it */ in php_putenv_destructor()
3448 *env = ""; in php_putenv_destructor()
4083 char *p, **env; local
4125 for (env = environ; env != NULL && *env != NULL; env++) {
4126 if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
4129 pe.previous_value = estrdup(*env);
4131 pe.previous_value = *env;
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c3077 char **env; in unset_lsapi_envs() local
3079 env = *_NSGetEnviron(); in unset_lsapi_envs()
3081 env = environ; in unset_lsapi_envs()
3083 while( env != NULL && *env != NULL ) in unset_lsapi_envs()
3085 if (!strncmp(*env, "LSAPI_", 6) || !strncmp( *env, "PHP_LSAPI_", 10 ) in unset_lsapi_envs()
3086 || (!strncmp( *env, "PHPRC=", 6 )&&(!s_uid))) in unset_lsapi_envs()
3088 char ** del = env; in unset_lsapi_envs()
3094 ++env; in unset_lsapi_envs()
/PHP-5.5/win32/build/
H A Dconfutils.js527 var i, found = false, place = false, file, env;
550 env = WshShell.Environment("Process").Item(env_name);
551 env = env.split(";");
552 for (i = 0; i < env.length; i++) {
553 file = glob(env[i] + "\\" + thing_to_find);
H A Dconfig.w32.phpize.in46 // that is set in that env var
H A Dconfig.w3247 // that is set in that env var
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c602 for (zend_hash_internal_pointer_reset_ex(request->env, &pos); in cgi_php_import_environment_variables()
603 … zend_hash_get_current_key_ex(request->env, &var, &var_len, &idx, 0, &pos) == HASH_KEY_IS_STRING && in cgi_php_import_environment_variables()
604 zend_hash_get_current_data_ex(request->env, (void **) &val, &pos) == SUCCESS; in cgi_php_import_environment_variables()
605 zend_hash_move_forward_ex(request->env, &pos) in cgi_php_import_environment_variables()
H A Dfpm_conf.c662 for (kv = wpc->env; kv; kv = kv_next) { in fpm_worker_pool_config_free()
1412 config = (char *)current_wp->config + WPO(env); in fpm_conf_ini_parser_array()
1612 for (kv = wp->config->env; kv; kv = kv->next) { in fpm_conf_dump()
/PHP-5.5/ext/soap/
H A Dsoap.c1629 xmlNodePtr env = get_node(doc_request->children,"Envelope"); local
1630 if (env && env->ns) {
1631 if (strcmp((char*)env->ns->href, SOAP_1_1_ENV_NAMESPACE) == 0) {
1633 } else if (strcmp((char*)env->ns->href,SOAP_1_2_ENV_NAMESPACE) == 0) {
3460 xmlNodePtr trav,env,head,body,func; local
3467 env = NULL;
3472 env = trav;
3477 env = trav;
3487 if (env == NULL) {
3491 attr = env->properties;
[all …]
/PHP-5.5/ext/pdo_oci/
H A Doci_statement.c337 STMT_CALL(OCIDescriptorAlloc, (S->H->env, &P->thing, OCI_DTYPE_LOB, 0, NULL)); in oci_stmt_param_hook()
561 … STMT_CALL(OCIDescriptorAlloc, (S->H->env, (dvoid**)&S->cols[colno].data, OCI_DTYPE_LOB, 0, NULL)); in oci_stmt_describe()
/PHP-5.5/build/
H A Dshtool1227env -i sort -n | sed -n -e '$p' | sed -e 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/') 2>/dev/null`
1240 /bin/ls *[_-]release *[_-]version 2>/dev/null | env -i sort | \
/PHP-5.5/ext/mysql/
H A Dphp_mysql.c753 char *env; local
759 if ((env = getenv("MYSQL_TCP_PORT"))) {
760 MySG(default_port) = (uint) atoi(env);
/PHP-5.5/ext/oci8/
H A Doci8_statement.c54 …PHP_OCI_CALL(OCIHandleAlloc, (connection->env, (dvoid **)&(statement->stmt), OCI_HTYPE_STMT, 0, NU… in php_oci_statement_create()
57 …PHP_OCI_CALL(OCIHandleAlloc, (connection->env, (dvoid **)&(statement->err), OCI_HTYPE_ERROR, 0, NU… in php_oci_statement_create()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic11562 0 search/1 #!/usr/bin/env\ lua Lua script text executable
11564 0 search/1 #!\ /usr/bin/env\ lua Lua script text executable
14823 0 search/1 #!/usr/bin/env\ perl Perl script text executable
14825 0 search/1 #!\ /usr/bin/env\ perl Perl script text executable
15619 0 search/1 #!/usr/bin/env\ ruby Ruby script text executable
15621 0 search/1 #!\ /usr/bin/env\ ruby Ruby script text executable
17177 0 search/1 #!/usr/bin/env\ tcl Tcl script text executable
17179 0 search/1 #!\ /usr/bin/env\ tcl Tcl script text executable
17809 # using env
17810 0 string/t #!/usr/bin/env a
[all …]

Completed in 166 milliseconds

1234567