Searched refs:how (Results 1 - 14 of 14) sorted by relevance
| /PHP_TRUNK/TSRM/ |
| H A D | TSRM.c | 717 TSRM_API int tsrm_sigmask(int how, const sigset_t *set, sigset_t *oldset) argument 722 return pthread_sigmask(how, set, oldset); 724 return sigprocmask(how, set, oldset);
|
| H A D | TSRM.h | 146 TSRM_API int tsrm_sigmask(int how, const sigset_t *set, sigset_t *oldset);
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_process_ctl.c | 122 int fpm_pctl_kill(pid_t pid, int how) /* {{{ */ argument 126 switch (how) {
|
| H A D | fpm_process_ctl.h | 22 int fpm_pctl_kill(pid_t pid, int how);
|
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_mysqlnd.h | 40 #define mysqli_close(c, how) mysqlnd_close((c), (how))
|
| /PHP_TRUNK/ext/pcntl/ |
| H A D | pcntl.c | 74 ZEND_ARG_INFO(0, how) 273 /* {{{ "how" argument for sigprocmask */ 915 /* {{{ proto bool pcntl_sigprocmask(int how, array set[, array &oldset]) 919 long how, signo; local 924 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "la|z", &how, &user_set, &user_oldset) == FAILURE) { 950 if (sigprocmask(how, &set, &oldset) != 0) {
|
| /PHP_TRUNK/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
|
| H A D | transports.c | 507 PHPAPI int php_stream_xport_shutdown(php_stream *stream, stream_shutdown_t how TSRMLS_DC) 515 param.how = how;
|
| H A D | xp_socket.c | 398 xparam->outputs.returncode = shutdown(sock->socket, shutdown_how[xparam->how]);
|
| /PHP_TRUNK/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 1423 long how = PDO_FETCH_USE_DEFAULT; local [all...] |
| /PHP_TRUNK/ext/sockets/ |
| H A D | sockets.c | 239 ZEND_ARG_INFO(0, how) 2128 /* {{{ proto bool socket_shutdown(resource socket[, int how]) U
|
| /PHP_TRUNK/ext/standard/ |
| H A D | basic_functions.c | 2147 ZEND_ARG_INFO(0, how)
|
| H A D | streamsfuncs.c | 1614 /* {{{ proto int stream_socket_shutdown(resource stream, int how) 1616 with stream to be shut down. If how is SHUT_RD, further receptions will 1617 be disallowed. If how is SHUT_WR, further transmissions will be disallowed. 1618 If how is SHUT_RDWR, further receptions and transmissions will be 1622 long how; local 1626 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &zstream, &how) == FAILURE) { 1630 if (how != STREAM_SHUT_RD && 1631 how != STREAM_SHUT_WR && 1632 how != STREAM_SHUT_RDWR) { 1638 RETURN_BOOL(php_stream_xport_shutdown(stream, (stream_shutdown_t)how TSRMLS_C [all...] |
| /PHP_TRUNK/ext/pgsql/ |
| H A D | pgsql.c | 5104 /* This is stupid way to do. I'll fix it when I decied how to support
|
Completed in 52 milliseconds