Searched defs:how (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | fpm_process_ctl.c | 122 int fpm_pctl_kill(pid_t pid, int how) /* {{{ */ argument 126 switch (how) {
|
| /PHP_5_3/ext/pcntl/ |
| H A D | pcntl.c | 74 ZEND_ARG_INFO(0, how) 273 /* {{{ "how" argument for sigprocmask */ 909 /* {{{ proto bool pcntl_sigprocmask(int how, array set[, array &oldset]) 913 long how, signo; local 918 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "la|z", &how, &user_set, &user_oldset) == FAILURE) { 944 if (sigprocmask(how, &set, &oldset) != 0) {
|
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_stmt.c | 49 ZEND_ARG_INFO(0, how) 64 ZEND_ARG_INFO(0, how) 854 enum pdo_fetch_type how, enum pdo_fetch_orientation ori, long offset, zval *return_all TSRMLS_DC) /* {{{ */ 861 if (how == PDO_FETCH_USE_DEFAULT) { 862 how = stmt->default_fetch_type; 864 flags = how & PDO_FETCH_FLAGS; 865 how = how & ~PDO_FETCH_FLAGS; 871 if (how == PDO_FETCH_BOUND) { 885 if (how 853 do_fetch(pdo_stmt_t *stmt, int do_bind, zval *return_value, enum pdo_fetch_type how, enum pdo_fetch_orientation ori, long offset, zval *return_all TSRMLS_DC) argument 1306 long how = PDO_FETCH_USE_DEFAULT; local 1333 long how = PDO_FETCH_CLASS; local 1432 long how = PDO_FETCH_USE_DEFAULT; local [all...] |
| /PHP_5_3/main/streams/ |
| H A D | php_stream_transport.h | 120 PHPAPI int php_stream_xport_shutdown(php_stream *stream, stream_shutdown_t how TSRMLS_DC); 140 unsigned int how:2; member in struct:_php_stream_xport_param
|
| /PHP_5_3/ext/standard/ |
| H A D | streamsfuncs.c | 1573 /* {{{ proto int stream_socket_shutdown(resource stream, int how) 1575 with stream to be shut down. If how is SHUT_RD, further receptions will 1576 be disallowed. If how is SHUT_WR, further transmissions will be disallowed. 1577 If how is SHUT_RDWR, further receptions and transmissions will be 1581 long how; local 1585 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &zstream, &how) == FAILURE) { 1589 if (how != STREAM_SHUT_RD && 1590 how != STREAM_SHUT_WR && 1591 how != STREAM_SHUT_RDWR) { 1597 RETURN_BOOL(php_stream_xport_shutdown(stream, (stream_shutdown_t)how TSRMLS_C [all...] |
Completed in 10 milliseconds