| /PHP_5_4/ext/soap/interop/ |
| H A D | test.utility.php | 123 $response = new SOAP_Parser($msg); variable 124 if ($response->fault) { 125 return $response->fault->getFault(); 127 $return = $response->getResponse(); 128 $v = $response->decode($return);
|
| /PHP_5_4/ext/standard/tests/http/ |
| H A D | server.inc | 76 // send response
|
| /PHP_5_4/ext/xmlrpc/libxmlrpc/ |
| H A D | xmlrpc.h | 402 int XMLRPC_ResponseIsFault(XMLRPC_REQUEST response); 404 int XMLRPC_GetResponseFaultCode(XMLRPC_REQUEST response); 406 const char* XMLRPC_GetResponseFaultString (XMLRPC_REQUEST response);
|
| H A D | xmlrpc.c | 121 * method -- thereby generating a response. The response will be serialized into XML and 125 * Both the request and the response may consist of arbitrarily long, arbitrarily nested 400 * in response to a request. This allows setting the 430 * in response to a request. This allows setting the 2848 * int XMLRPC_ResponseIsFault (XMLRPC_REQUEST response) 2850 * Determines if a response contains an encapsulated fault "object" 2859 int XMLRPC_ResponseIsFault(XMLRPC_REQUEST response) { argument 2860 return XMLRPC_ValueIsFault( XMLRPC_RequestGetData(response) ); 2892 * int XMLRPC_GetResponseFaultCode(XMLRPC_REQUEST response) 2905 XMLRPC_GetResponseFaultCode(XMLRPC_REQUEST response) argument 2948 XMLRPC_GetResponseFaultString(XMLRPC_REQUEST response) argument [all...] |
| /PHP_5_4/ext/ftp/ |
| H A D | ftp.c | 96 /* reads an ftp response, returns true on success, false on error */ 431 /* copy out the pwd from response */ 548 /* copy out the dir from response */ 613 ftp_alloc(ftpbuf_t *ftp, const int size, char **response) argument 631 if (response && ftp->inbuf) { 632 *response = estrdup(ftp->inbuf);
|
| H A D | ftp.h | 62 int resp; /* last response code */ 63 char inbuf[FTP_BUFSIZE]; /* last response text */ 124 /* send a raw ftp command, return response as a hashtable, NULL on error */ 147 * If response is passed, it is estrdup()ed from ftp->inbuf and must be freed 149 int ftp_alloc(ftpbuf_t *ftp, const int size, char **response);
|
| H A D | php_ftp.c | 110 ZEND_ARG_INFO(1, response) 625 /* {{{ proto bool ftp_alloc(resource stream, int size[, &response]) 632 char *response = NULL; local 640 ret = ftp_alloc(ftp, size, zresponse ? &response : NULL); 641 if (response) { 643 ZVAL_STRING(zresponse, response, 0);
|
| /PHP_5_4/ext/soap/ |
| H A D | php_http.h | 31 char **response,
|
| H A D | php_packet_soap.c | 24 /* SOAP client calls this function to parse response from SOAP server */ 28 xmlDocPtr response; local 43 response = soap_xmlParseMemory(buffer, buffer_size); 45 if (!response) { 49 if (xmlGetIntSubset(response) != NULL) { 51 xmlFreeDoc(response); 57 trav = response->children; 70 xmlFreeDoc(response); 78 xmlFreeDoc(response); 86 xmlFreeDoc(response); [all...] |
| 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); 29 static int get_http_headers(php_stream *socketd,char **response, int *out_size TSRMLS_DC); 572 char HA1[33], HA2[33], response[33], cnonce[33], nc[9]; local 667 make_digest(response, hash); 704 smart_str_append_const(&soap_headers, "\", response=\""); 705 smart_str_appendl(&soap_headers, response, 32); 1174 /* Decompress response */ 1214 add_soap_fault(this_ptr, "HTTP", "Can't uncompress compressed response", NULL, NULL TSRMLS_CC); 1299 static int get_http_body(php_stream *stream, int close, char *headers, char **response, int *out_size TSRMLS_DC) argument 1321 /* Empty response */ 1433 get_http_headers(php_stream *stream, char **response, int *out_size TSRMLS_DC) argument [all...] |
| H A D | soap.c | 2533 static int do_request(zval *this_ptr, xmlDoc *request, char *location, char *action, int version, int one_way, zval *response TSRMLS_DC) 2543 INIT_ZVAL(*response); 2583 if (call_user_function(NULL, &this_ptr, &func, response, 5, params TSRMLS_CC) != SUCCESS) { 2586 } else if (Z_TYPE_P(response) != IS_STRING) { 2593 add_property_stringl(this_ptr, "__last_response", Z_STRVAL_P(response), Z_STRLEN_P(response), 1); 2623 zval response; local 2704 ret = do_request(this_ptr, request, location, fnb->soapAction, soap_version, one_way, &response TSRMLS_CC); 2707 ret = do_request(this_ptr, request, location, NULL, soap_version, one_way, &response TSRMLS_CC); 2712 if (ret && Z_TYPE(response) 4403 get_param(sdlFunctionPtr function, char *param_name, int index, int response) argument [all...] |
| /PHP_5_4/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 780 XMLRPC_REQUEST response; local 786 response = XMLRPC_REQUEST_FromXML(xml_in, xml_in_len, &opts); 787 if (response) { 789 retval = XMLRPC_to_PHP(XMLRPC_RequestGetData(response)); 791 if (XMLRPC_RequestGetRequestType(response) == xmlrpc_request_call) { 793 method_name = XMLRPC_RequestGetMethodName(response); 807 XMLRPC_RequestFree(response, 1);
|
| /PHP_5_4/ext/imap/tests/ |
| H A D | imap_include.inc | 30 * Display all fields in an element from an imap_fetch_overview() response
|
| /PHP_5_4/ext/snmp/ |
| H A D | snmp.c | 710 struct snmp_pdu *pdu=NULL, *response; local 793 status = snmp_synch_response(ss, pdu, &response); 795 if (response->errstat == SNMP_ERR_NOERROR) { 801 snmp_free_pdu(response); 806 for (vars = response->variables; vars; vars = vars->next_variable) { 899 if (!(st & SNMP_CMD_WALK) || response->errstat != SNMP_ERR_NOSUCHNAME || Z_TYPE_P(return_value) == IS_BOOL) { 900 for ( count=1, vars = response->variables; 901 vars && count != response->errindex; 904 if (st & (SNMP_CMD_GET | SNMP_CMD_GETNEXT) && response->errstat == SNMP_ERR_TOOBIG && objid_query->step > 1) { /* Answer will not fit into single packet */ 907 snmp_free_pdu(response); [all...] |
| /PHP_5_4/sapi/thttpd/ |
| H A D | thttpd.c | 682 if (TG(hc)->response) 683 free(TG(hc)->response); 685 TG(hc)->response = TG(sbuf).c;
|
| /PHP_5_4/ |
| H A D | server-tests.php | 250 public $response; variable 310 $this->response = $match[2]; variable 325 if(strlen($this->response) > 0) return TRUE; 402 #print $r->response; 1385 //$out = preg_replace("/\r\n/","\n",$r->response); 1386 $out = $r->response;
|
| /PHP_5_4/win32/ |
| H A D | sendmail.c | 13 * emails and CGI-BIN form response for the Windows platform. 56 #define SMTP_ERROR_RESPONSE_SPEC "SMTP server response: %s" 58 response is ecalloc()d in Ack() itself and efree()d here 60 #define SMTP_ERROR_RESPONSE(response) { \ 61 if (response && error_message) { \ 62 if (NULL != (*error_message = ecalloc(1, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response)))) { \ 63 snprintf(*error_message, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response), SMTP_ERROR_RESPONSE_SPEC, response); \ 65 efree(response); \ 874 // Get the response fro [all...] |