pair 750 ext/pcntl/pcntl.c char **current_arg, **pair; pair 789 ext/pcntl/pcntl.c for ( zend_hash_internal_pointer_reset(envs_hash), pair = envp; pair 791 ext/pcntl/pcntl.c (envi++, pair++, zend_hash_move_forward(envs_hash)) ) { pair 799 ext/pcntl/pcntl.c pair--; pair 807 ext/pcntl/pcntl.c *pair = emalloc(pair_length); pair 808 ext/pcntl/pcntl.c strlcpy(*pair, key, key_length); pair 809 ext/pcntl/pcntl.c strlcat(*pair, "=", pair_length); pair 810 ext/pcntl/pcntl.c strlcat(*pair, Z_STRVAL_PP(element), pair_length); pair 815 ext/pcntl/pcntl.c *(pair) = NULL; pair 823 ext/pcntl/pcntl.c for (pair = envp; *pair != NULL; pair++) efree(*pair); pair 414 ext/standard/proc_open.c # define pipe(pair) (CreatePipe(&pair[0], &pair[1], &security, 0) ? 0 : -1) pair 56 ext/standard/streamsfuncs.c php_socket_t pair[2]; pair 63 ext/standard/streamsfuncs.c if (0 != socketpair(domain, type, protocol, pair)) { pair 72 ext/standard/streamsfuncs.c s1 = php_stream_sock_open_from_socket(pair[0], 0); pair 73 ext/standard/streamsfuncs.c s2 = php_stream_sock_open_from_socket(pair[1], 0); pair 801 main/rfc1867.c char *pair = NULL; pair 808 main/rfc1867.c while (*cd && (pair = getword(mbuff->input_encoding, &cd, ';' TSRMLS_CC))) pair 810 main/rfc1867.c char *key = NULL, *word = pair; pair 816 main/rfc1867.c if (strchr(pair, '=')) { pair 817 main/rfc1867.c key = getword(mbuff->input_encoding, &pair, '=' TSRMLS_CC); pair 823 main/rfc1867.c param = getword_conf(mbuff->input_encoding, pair TSRMLS_CC); pair 836 main/rfc1867.c filename = getword_conf(mbuff->input_encoding, pair TSRMLS_CC); pair 471 sapi/cli/php_cli_server.c php_cli_server_ext_mime_type_pair *pair; pair 472 sapi/cli/php_cli_server.c for (pair = mime_type_map; pair->ext; pair++) { pair 473 sapi/cli/php_cli_server.c size_t len = strlen(pair->ext); pair 474 sapi/cli/php_cli_server.c if (len == ext_len && memcmp(pair->ext, ext, len) == 0) { pair 475 sapi/cli/php_cli_server.c return pair->mime_type;