| /PHP_TRUNK/ext/phar/tests/zip/files/ |
| H A D | zipmaker.php.inc | 28 * @param string|resource file contents or open file handle
|
| /PHP_TRUNK/ext/standard/tests/file/ |
| H A D | file.inc | 83 Function : bool fill_file(resource $file_handle, string $fill_type, string $file_size);
|
| /PHP_TRUNK/ext/standard/tests/mail/ |
| H A D | mail_include.inc | 52 * @param resource $imap_stream 85 * @param resource $imap_stream
|
| /PHP_TRUNK/ext/sybase_ct/tests/ |
| H A D | test.inc | 52 // {{{ resource sybase_connect_ex(string charset= NULL, string appname= NULL, bool new= FALSE) 63 // {{{ void sybase_select_ex(resource dbh, string query) 79 // {{{ mixed sybase_select_single(resource dbh, string query)
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_unix.c | 9 #include <sys/resource.h>
|
| /PHP_TRUNK/ext/imap/tests/ |
| H A D | imap_include.inc | 98 * @param resource $imap_stream 131 * @param resource $imap_stream
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_list.c | 22 /* resource lists */ 113 void *resource; local 123 zend_error(E_WARNING, "%s%s%s(): no %s resource supplied", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name); 129 zend_error(E_WARNING, "%s%s%s(): supplied argument is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), resource_type_name); 138 resource = zend_list_find(id, &actual_resource_type); 139 if (!resource) { 142 zend_error(E_WARNING, "%s%s%s(): %d is not a valid %s resource", class_name, space, get_active_function_name(TSRMLS_C), id, resource_type_name); 154 return resource; 161 zend_error(E_WARNING, "%s%s%s(): supplied resource is not a valid %s resource", class_nam [all...] |
| H A D | zend_list.h | 85 ZEND_API const char *zend_rsrc_list_get_rsrc_type(int resource TSRMLS_DC);
|
| /PHP_TRUNK/ext/ldap/ |
| H A D | ldap.c | 280 /* {{{ proto resource ldap_connect([string host [, int port [, string wallet [, string wallet_passwd [, int authmode]]]]]) 379 /* {{{ proto bool ldap_bind(resource link [, string dn [, string password]]) 489 /* {{{ proto bool ldap_sasl_bind(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authc_id [, string sasl_authz_id [, string props]]]]]]]) 529 /* {{{ proto bool ldap_unbind(resource link) 638 zval **entry, *resource; local 721 MAKE_STD_ZVAL(resource); 726 ZEND_REGISTER_RESOURCE(resource, ldap_res, le_result); 727 add_next_index_zval(return_value, resource); 795 /* {{{ proto resource ldap_read(resource|arra [all...] |
| /PHP_TRUNK/ext/pcntl/ |
| H A D | pcntl.c | 44 #include <sys/resource.h>
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_sql_parser.c | 578 pdo_raise_impl_error(stmt->dbh, stmt, "HY105", "Expected a stream resource" TSRMLS_CC);
|
| /PHP_TRUNK/ext/posix/ |
| H A D | posix.c | 38 #include <sys/resource.h> 695 /* Checks if the provides resource is a stream and if it provides a file descriptor */ 703 php_error_docref(NULL TSRMLS_CC, E_WARNING, "expects argument 1 to be a valid stream resource"); 1305 Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally) */
|
| /PHP_TRUNK/ext/standard/ |
| H A D | ftp_fopen_wrapper.c | 137 php_url *resource = NULL; local 143 resource = php_url_parse(path); 144 if (resource == NULL || resource->path == NULL) { 145 if (resource && presource) { 146 *presource = resource; 151 use_ssl = resource->scheme && (strlen(resource->scheme) > 3) && resource->scheme[3] == 's'; 154 if (resource 416 php_url *resource = NULL; local 698 php_url *resource = NULL; local 786 php_url *resource = NULL; local 909 php_url *resource = NULL; local 1038 php_url *resource = NULL; local 1132 php_url *resource = NULL; local [all...] |
| H A D | microtime.c | 35 #include <sys/resource.h>
|
| H A D | url.c | 379 php_url *resource; local 386 resource = php_url_parse_ex(str, str_len); 387 if (resource == NULL) { 395 if (resource->scheme != NULL) RETVAL_STRING(resource->scheme, 1); 398 if (resource->host != NULL) RETVAL_STRING(resource->host, 1); 401 if (resource->port != 0) RETVAL_LONG(resource->port); 404 if (resource [all...] |
| H A D | http_fopen_wrapper.c | 90 php_url *resource = NULL; local 125 resource = php_url_parse(path); 126 if (resource == NULL) { 130 if (strncasecmp(resource->scheme, "http", sizeof("http")) && strncasecmp(resource->scheme, "https", sizeof("https"))) { 135 php_url_free(resource); 150 php_url_free(resource); 154 use_ssl = resource->scheme && (strlen(resource->scheme) > 4) && resource [all...] |
| /PHP_TRUNK/ext/tidy/ |
| H A D | tidy.c | 327 ZEND_ARG_INFO(0, resource) 1366 /* {{{ proto string tidy_get_opt_doc(tidy resource, string optname) 1699 /* {{{ proto TidyNode tidy_get_body(resource tidy)
|
| /PHP_TRUNK/sapi/litespeed/ |
| H A D | lsapilib.c | 69 #include <sys/resource.h>
|
| /PHP_TRUNK/ext/phar/ |
| H A D | dirstream.c | 324 php_url *resource = NULL; local 334 if ((resource = phar_parse_url(wrapper, path, mode, options TSRMLS_CC)) == NULL) { 340 if (!resource->scheme || !resource->host || !resource->path) { 341 if (resource->host && !resource->path) { 342 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: no directory in \"%s\", must have at least phar://%s/ for root directory (always use full path to a new phar)", path, resource->host); 343 php_url_free(resource); 346 php_url_free(resource); 441 php_url *resource = NULL; local 573 php_url *resource = NULL; local [all...] |
| H A D | stream.c | 61 php_url *resource; local 85 resource = ecalloc(1, sizeof(php_url)); 86 resource->scheme = estrndup("phar", 4); 87 resource->host = arch; 89 resource->path = entry; 91 if (resource) { 93 fprintf(stderr, "Scheme: %s\n", resource->scheme); 94 /* fprintf(stderr, "User: %s\n", resource->user);*/ 95 /* fprintf(stderr, "Pass: %s\n", resource->pass ? "***" : NULL);*/ 96 fprintf(stderr, "Host: %s\n", resource 165 php_url *resource = NULL; local 569 php_url *resource = NULL; local 691 php_url *resource; local [all...] |
| H A D | phar_object.c | 3677 /* {{{ add a file within the phar archive from a string or resource 3894 php_stream *resource; local 3915 if (!(resource = php_stream_open_wrapper(fname, "rb", 0, NULL))) { 3926 php_stream_to_zval(resource, zresource); 3929 php_stream_close(resource);
|
| /PHP_TRUNK/ext/libxml/ |
| H A D | libxml.c | 556 const char *resource = NULL; local 618 resource = Z_STRVAL_P(retval_ptr); 625 "resource, but it is not a stream", 648 /* retval not string nor resource nor null; convert to string */ 656 if (resource == NULL) { 663 /* we got the resource in the form of a string; open it */ 664 ret = xmlNewInputFromFile(context, resource); 687 * we don't even have a resource list by then), but then whether one 885 /* the steam_context resource will be released by resource lis [all...] |
| /PHP_TRUNK/ext/oci8/ |
| H A D | php_oci8_int.h | 142 int rsrc_id; /* resource ID */ 327 #define PHP_OCI_REGISTER_RESOURCE(resource, le_resource) \ 329 resource->id = ZEND_REGISTER_RESOURCE(NULL, resource, le_resource); \
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | ZendAccelerator.h | 45 # include <sys/resource.h>
|