| /PHP_5_5/ext/date/lib/ |
| H A D | timelib_structs.h | 122 tlocinfo location; member in struct:timelib_tzinfo
|
| /PHP_5_5/ext/soap/ |
| H A D | php_schema.c | 98 static void schema_load_file(sdlCtx *ctx, xmlAttrPtr ns, xmlChar *location, xmlAttrPtr tns, int import TSRMLS_DC) { argument 99 if (location != NULL && 100 !zend_hash_exists(&ctx->docs, (char*)location, xmlStrlen(location)+1)) { 105 sdl_set_uri_credentials(ctx, (char*)location TSRMLS_CC); 106 doc = soap_xmlParseFile((char*)location TSRMLS_CC); 110 soap_error1(E_ERROR, "Parsing Schema: can't import schema from '%s'", location); 115 soap_error1(E_ERROR, "Parsing Schema: can't import schema from '%s'", location); 121 soap_error2(E_ERROR, "Parsing Schema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, ns->children->content); 125 soap_error2(E_ERROR, "Parsing Schema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, new_tn 190 xmlAttrPtr location; local 210 xmlAttrPtr location; local 231 xmlAttrPtr ns, location; local [all...] |
| H A D | php_sdl.c | 388 xmlAttrPtr tmp = get_attribute(trav->properties, "location"); 764 xmlAttrPtr type, name, bindingAttr, location; local 830 location = get_attribute(address->properties, "location"); 831 if (!location) { 832 soap_error0(E_ERROR, "Parsing WSDL: No location associated with <port>"); 835 tmpbinding->location = estrdup((char*)location->children->content); 871 efree(tmpbinding->location); 1679 binding->location [all...] |
| H A D | php_sdl.h | 85 char *location; member in struct:_sdlBinding
|
| H A D | php_http.c | 332 char *location, 424 if (location != NULL && location[0] != '\000') { 425 phpurl = php_url_parse(location); 329 make_http_soap_request(zval *this_ptr, char *buf, int buf_size, char *location, char *soapaction, int soap_version, char **buffer, int *buffer_len TSRMLS_DC) argument
|
| H A D | soap.c | 360 ZEND_ARG_INFO(0, location) 2373 if (zend_hash_find(ht, "location", sizeof("location"), (void**)&tmp) == SUCCESS && 2375 add_property_stringl(this_ptr, "location", Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp), 1); 2377 php_error_docref(NULL TSRMLS_CC, E_ERROR, "'location' option is required in nonWSDL mode"); 2512 php_error_docref(NULL TSRMLS_CC, E_ERROR, "'location' and 'uri' options are required in nonWSDL mode"); 2544 static int do_request(zval *this_ptr, xmlDoc *request, char *location, char *action, int version, int one_way, zval *response TSRMLS_DC) argument 2574 if (location == NULL) { 2577 ZVAL_STRING(params[1], location, 0); 2619 char* location, 2613 do_soap_call(zval* this_ptr, char* function, int function_len, int arg_count, zval** real_args, zval* return_value, char* location, char* soap_action, char* call_uri, HashTable* soap_headers, zval* output_headers TSRMLS_DC) argument 2837 char *function, *location=NULL, *soap_action = NULL, *uri = NULL; local 3080 char *buf, *location, *action; local 3193 char *location = NULL; local [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | http_fopen_wrapper.c | 99 char location[HTTP_HEADER_BLOCK_SIZE]; local 636 location[0] = '\0'; 744 strlcpy(location, http_header_line + 10, sizeof(location)); 787 if (!reqok || (location[0] != '\0' && follow_location)) { 792 if (location[0] != '\0') 793 php_stream_notify_info(context, PHP_STREAM_NOTIFY_REDIRECTED, location, 0); 798 if (location[0] != '\0') { 804 if (strlen(location)<8 || (strncasecmp(location, "htt [all...] |