Lines Matching refs:key
607 ZEND_ARG_INFO(0, key)
3308 PHP_FE(key, arginfo_key)
3429 SetEnvironmentVariable(pe->key, "bugbug"); in php_putenv_destructor()
3437 unsetenv(pe->key); in php_putenv_destructor()
3439 SetEnvironmentVariable(pe->key, NULL); in php_putenv_destructor()
3441 _putenv_s(pe->key, ""); in php_putenv_destructor()
3447 if (!strncmp(*env, pe->key, pe->key_len) && (*env)[pe->key_len] == '=') { /* found it */ in php_putenv_destructor()
3457 if (!strncmp(pe->key, "TZ", pe->key_len)) { in php_putenv_destructor()
3463 efree(pe->key); in php_putenv_destructor()
4101 pe.key = estrndup(setting, setting_len);
4102 if ((p = strchr(pe.key, '='))) { /* nullify the '=' if there is one */
4109 pe.key_len = strlen(pe.key);
4121 zend_hash_del(&BG(putenv_ht), pe.key, pe.key_len+1);
4126 if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
4146 error_code = SetEnvironmentVariable(pe.key, value);
4155 && _putenv_s(pe.key, value ? value : "") == 0
4160 zend_hash_add(&BG(putenv_ht), pe.key, pe.key_len + 1, (void **) &pe, sizeof(putenv_entry), NULL);
4162 if (!strncmp(pe.key, "TZ", pe.key_len)) {
4169 efree(pe.key);
5907 ulong key = (ulong) zend_atol(Z_STRVAL_P(arg1), Z_STRLEN_P(arg1)); local
5908 if (zend_hash_index_find(Z_ARRVAL_P(arr), key, (void **) &find_hash) == FAILURE) {
5913 zend_hash_index_update(Z_ARRVAL_P(arr), key, &hash, sizeof(zval *), NULL);