Home
last modified time | relevance | path

Searched refs:key (Results 1 – 25 of 1229) sorted by path

12345678910>>...50

/php-src/
H A D.gdbinit233 set $name = $p->key
335 set $key = (zend_string*)0
340 set $key = $bucket->key
350 if $key
351 ____print_str (char*)$key->val $key->len
H A DNEWS31 . Added feature_list key to the curl_version() return value (Ayesh)
/php-src/.github/scripts/
H A Dsetup-slapd.sh24 -out /etc/ldap/ssl/server.crt -keyout /etc/ldap/ssl/server.key \
70 olcTLSCertificateKeyFile: /etc/ldap/ssl/server.key
/php-src/.github/workflows/
H A Dnightly.yml29 # The cache key needs to change every time for the
31 key: nightly-${{ github.run_id }}-${{ github.run_attempt }}
825 key: "${{github.job}}-${{hashFiles('php/main/php_version.h')}}"
H A Dpush.yml117key: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{…
171 key: "${{github.job}}-${{matrix.os}}-${{hashFiles('main/php_version.h')}}"
247 key: "${{github.job}}-${{hashFiles('main/php_version.h')}}"
291 ssh-key: ${{ secrets.BENCHMARKING_DATA_DEPLOY_KEY }}
/php-src/TSRM/
H A Dtsrm_win32.c407 if (!addr && ptr->descriptor->shm_perm.key == key) { in shm_get()
637 if (key != IPC_PRIVATE) { in shmget()
672 if (key == IPC_PRIVATE) { in shmget()
677 if (ptr->descriptor && ptr->descriptor->shm_perm.key == key) { in shmget()
678 key = tsrm_choose_random_shm_key(key); in shmget()
685 shm = shm_get(key, NULL); in shmget()
694 shm->descriptor->shm_perm.key = key; in shmget()
715 return key; in shmget()
720 shm_pair *shm = shm_get(key, NULL); in shmat()
757 shm_pair *shm = shm_get(key, NULL); in shmctl()
[all …]
H A Dtsrm_win32.h26 key_t key; member
102 TSRM_API int shmget(key_t key, size_t size, int flags);
103 TSRM_API void *shmat(int key, const void *shmaddr, int flags);
105 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
/php-src/Zend/Optimizer/
H A Dcompact_literals.c103 ZSTR_H(key) = zend_string_hash_func(key); in add_static_slot()
104 ZSTR_H(key) += kind; in add_static_slot()
115 zend_string_release_ex(key, 0); in add_static_slot()
123 ZSTR_H(key) = zend_string_hash_val(key) + bias; in bias_key()
134 zend_string *key; in create_str_cache_key() local
137 key = zend_string_concat2( in create_str_cache_key()
142 key = zend_string_concat3( in create_str_cache_key()
150 bias_key(key, num_related - 1); in create_str_cache_key()
151 return key; in create_str_cache_key()
166 zend_string *key = NULL; in zend_optimizer_compact_literals() local
[all …]
H A Dsccp.c448 switch (Z_TYPE_P(key)) { in ct_eval_del_array_elem()
480 if (!key) { in ct_eval_add_array_elem()
489 switch (Z_TYPE_P(key)) { in ct_eval_add_array_elem()
529 zend_string *key; in ct_eval_add_array_unpack() local
537 if (key) { in ct_eval_add_array_unpack()
629 switch (Z_TYPE_P(key)) { in ct_eval_del_obj_prop()
641 switch (Z_TYPE_P(key)) { in ct_eval_add_obj_prop()
722 zend_string *key; in ct_eval_in_array() local
1954 zend_string *key; in join_hash_tables() local
1958 if (key) { in join_hash_tables()
[all …]
H A Dzend_dump.c31 zend_string *key; in zend_dump_ht() local
35 ZEND_HASH_FOREACH_KEY_VAL(ht, index, key, val) { in zend_dump_ht()
41 if (key) { in zend_dump_ht()
42 fprintf(stderr, "\"%s\"", ZSTR_VAL(key)); in zend_dump_ht()
666 zend_string *key; in zend_dump_op() local
669 ZEND_HASH_FOREACH_KEY_VAL(jumptable, num_key, key, zv) { in zend_dump_op()
670 if (key) { in zend_dump_op()
671 fprintf(stderr, " \"%s\":", ZSTR_VAL(key)); in zend_dump_op()
H A Dzend_func_info.c204 zend_string *key = zend_string_init_interned(func_infos[i].name, func_infos[i].name_len, 1); in zend_func_info_add() local
206 if (zend_hash_add_ptr(&func_info, key, (void**)&func_infos[i]) == NULL) { in zend_func_info_add()
210 zend_string_release_ex(key, 1); in zend_func_info_add()
/php-src/Zend/
H A Dbench.php204 foreach($hash1 as $key => $value) $hash2[$key] += $value;
/php-src/Zend/tests/
H A D019.phpt89 // check the isset and unset on non existing key
H A D028.phpt21 Warning: Undefined array key 2 in %s on line %d
H A D038.phpt2 Trying to use lambda as array key
H A Darray_offset.phpt2 Ensure "undefined offset" notice formats message correctly when undefined key is negative
14 Warning: Undefined array key -1 in %s on line %d
18 Warning: Undefined array key -1 in %s on line %d
20 Warning: Undefined array key -1 in %s on line %d
24 Warning: Undefined array key -1 in %s on line %d
H A Dassign_dim_op_undef.phpt13 Warning: Undefined array key "" in %s on line %d
H A Dbug27598.phpt2 Bug #27598 (list() array key assignment causes HUGE memory leak)
H A Dbug32674.phpt30 public function key(): mixed {
32 $element = key($this->_elements);
H A Dbug32993.phpt11 public function key(): mixed { return key($this->arr); }
H A Dbug33171.phpt16 foreach ($this as $key => $val)
18 echo "$key => $val\n";
H A Dbug34467.phpt8 function __set ($key, $value) {
9 $this->arr[$key] = $value;
12 function __get ($key) {
13 return $this->arr[$key];
/php-src/Zend/tests/array_unpack/
H A Dstring_keys.phpt19 // Test numeric string key from iterator.
/php-src/Zend/tests/assert/
H A Dexpect_007.phpt10 "key" => "X-HTTP ",
16 …match("~^([a-zA-Z0-9-]+)$~", $data["key"]), new HeaderMalfunctionError("malformed key found at {$n…
19 Fatal error: Uncaught HeaderMalfunctionError: malformed key found at 1 "X-HTTP " in %sexpect_007.ph…
H A Dexpect_015.phpt42 foreach ($a as $key => &$val) {
43 print "$key => $val\n";
203 foreach ($a as $key => &$val) {
204 print "$key => $val\n";

Completed in 75 milliseconds

12345678910>>...50