Lines Matching refs:fault_code

52 static void set_soap_fault(zval *obj, char *fault_code_ns, char *fault_code, char *fault_string, ch…
53 static void add_soap_fault_ex(zval *fault, zval *obj, char *fault_code, char *fault_string, char *f…
600 …char *fault_string = NULL, *fault_code = NULL, *fault_actor = NULL, *name = NULL, *fault_code_ns =… in PHP_METHOD() local
617 fault_code = ZSTR_VAL(code_str); in PHP_METHOD()
624 fault_code = Z_STRVAL_P(t_code); in PHP_METHOD()
629 if ((code_str || code_ht) && (fault_code == NULL || fault_code_len == 0)) { in PHP_METHOD()
639 set_soap_fault(this_ptr, fault_code_ns, fault_code, fault_string, fault_actor, details, name); in PHP_METHOD()
2912 static void add_soap_fault_ex(zval *fault, zval *obj, char *fault_code, char *fault_string, char *f… argument
2915 set_soap_fault(fault, NULL, fault_code, fault_string, fault_actor, fault_detail, NULL);
2921 void add_soap_fault(zval *obj, char *fault_code, char *fault_string, char *fault_actor, zval *fault… argument
2926 set_soap_fault(&fault, NULL, fault_code, fault_string, fault_actor, fault_detail, NULL);
2932 static void set_soap_fault(zval *obj, char *fault_code_ns, char *fault_code, char *fault_string, ch… argument
2941 if (fault_code != NULL) {
2945 add_property_string(obj, "faultcode", fault_code);
2949 add_property_string(obj, "faultcode", fault_code);
2950 if (strcmp(fault_code,"Client") == 0 ||
2951 strcmp(fault_code,"Server") == 0 ||
2952 strcmp(fault_code,"VersionMismatch") == 0 ||
2953 strcmp(fault_code,"MustUnderstand") == 0) {
2957 if (strcmp(fault_code,"Client") == 0) {
2960 } else if (strcmp(fault_code,"Server") == 0) {
2963 } else if (strcmp(fault_code,"VersionMismatch") == 0 ||
2964 strcmp(fault_code,"MustUnderstand") == 0 ||
2965 strcmp(fault_code,"DataEncodingUnknown") == 0) {
2966 add_property_string(obj, "faultcode", fault_code);
2969 add_property_string(obj, "faultcode", fault_code);