Searched defs:close (Results 1 - 9 of 9) sorted by relevance
| /PHP_5_4/ext/sqlite3/libsqlite/ |
| H A D | sqlite3ext.h | 51 int (*close)(sqlite3*); member in struct:sqlite3_api_routines 247 #define sqlite3_close sqlite3_api->close
|
| /PHP_5_4/ext/dba/ |
| H A D | php_dba.h | 78 void (*close)(dba_info * TSRMLS_DC); member in struct:dba_handler
|
| /PHP_5_4/main/ |
| H A D | php_streams.h | 120 int (*close)(php_stream *stream, int close_handle TSRMLS_DC); member in struct:_php_stream_ops 136 /* close/destroy a wrapped stream */ 251 /* use this to tell the stream that it is OK if we don't explicitly close it */ 275 #define PHP_STREAM_FREE_CALL_DTOR 1 /* call ops->close */ 277 #define PHP_STREAM_FREE_PRESERVE_HANDLE 4 /* tell ops->close to not close it's underlying handle */ 280 #define PHP_STREAM_FREE_IGNORE_ENCLOSING 32 /* don't close the enclosing stream instead */ 574 #define PHP_STREAM_CRITICAL 3 /* an error occurred; origstream is in an unknown state; you should close origstream */
|
| /PHP_5_4/sapi/cgi/ |
| H A D | fastcgi.c | 75 # define closesocket(s) close(s) 1127 close(req->fd); 1302 int fcgi_flush(fcgi_request *req, int close) argument 1310 if (close) {
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 80 # define closesocket(s) close(s) 754 close(req->fd); 924 int fcgi_flush(fcgi_request *req, int close) argument 932 if (close) {
|
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_debug.h | 40 enum_func_status (*close)(MYSQLND_DEBUG * self); member in struct:st_mysqlnd_debug_methods
|
| H A D | mysqlnd_structs.h | 563 func_mysqlnd_conn__close close; member in struct:st_mysqlnd_conn_methods 861 The last one, please close the door! :-)
|
| /PHP_5_4/ext/sockets/ |
| H A D | sockets.c | 59 # define close(a) closesocket(a) macro 416 close(php_sock->bsd_socket); 459 close(sock->bsd_socket); 466 close(sock->bsd_socket); 1230 /* close & destroy stream, incl. removing it from the rsrc list;
|
| /PHP_5_4/ext/soap/ |
| H A D | php_http.c | 28 static int get_http_body(php_stream *socketd, int close, char *headers, char **response, int *out_size TSRMLS_DC); 514 "Connection: close\r\n"); 952 /* See if the server requested a close */ 958 if (strncasecmp(connection, "close", sizeof("close")-1) == 0) { 967 if (strncasecmp(connection, "close", sizeof("close")-1) == 0) { 1299 static int get_http_body(php_stream *stream, int close, char *headers, char **response, int *out_size TSRMLS_DC) argument 1302 int header_close = close, header_chunked = 0, header_length = 0, http_buf_size = 0; 1304 if (!close) { [all...] |
Completed in 23 milliseconds