Searched refs:fault (Results 1 - 25 of 51) sorted by relevance

123

/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/examples/
H A Dgoogle.pl25 die $google->call->faultstring if $google->call->fault;
H A Djoke.pl16 die $res->faultstring if $res->fault;
H A Dterraserver.pl22 if ($response->fault) {
40 if ($response->fault) {
/macosx-10.10/ruby-106/ruby/test/xmlrpc/
H A Dtest_parser.rb26 @fault_doc = File.read(datafile('fault.xml'))
57 # test fault ----------------------------------------------------------------
60 flag, fault = @p.parseMethodResponse(@fault_doc)
62 unless fault.is_a? XMLRPC::FaultException
65 assert_equal(fault.faultCode, 4)
66 assert_equal(fault.faultString, "an error message")
70 fault = XMLRPC::FaultException.new(1234, 'an error message')
71 assert_equal('an error message', fault.to_s)
72 assert_equal('#<XMLRPC::FaultException: an error message>', fault.inspect)
/macosx-10.10/SecurityTokend-55108/lib/
H A Dtdclient.cpp55 // The default fault() notifier does nothing
57 void ClientSession::fault() function in class:Security::Tokend::ClientSession
/macosx-10.10/SecurityTokend-55108/security_tokend_client/
H A Dtdclient.cpp55 // The default fault() notifier does nothing
57 void ClientSession::fault() function in class:Security::Tokend::ClientSession
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dtokend.cpp131 fault(true, "token daemon has died"); // flag asynchronous fault
136 // Declare a fault.
139 void TokenDaemon::fault(bool async, const char *reason) function in class:TokenDaemon
156 // A fault signalled from the ClientSession layer is just a (synchronous) fault
159 void TokenDaemon::fault() function in class:TokenDaemon
161 this->fault(false, "tokend service failed");
H A Dtokend.h40 // A Mix-in for classes that can receive (progated) fault nofications
75 void fault(bool async, const char *reason);
100 void fault(); // relay from Tokend::ClientSession
107 // fault processing
108 FaultRelay *mFaultRelay; // forward initial fault declarations to this object
109 bool mFaulted; // fault condition
H A Dtoken.cpp215 fault(false); // throws
310 fault(false);
315 fault(false);
354 // Set the token to fault state.
357 // Only one fault is actually processed; multiple calls are ignored.
360 // No fault is declared when a token is actually removed.
362 void Token::fault(bool async) function in class:Token
378 // if this is a synchronous fault, abort this operation now
386 secdebug("token", "%p fault relayed from tokend", this);
387 this->fault(asyn
[all...]
H A Dtoken.h66 void fault(bool async);
112 bool mFaulted; // fault state flag
/macosx-10.10/sudo-73/src/
H A Dsiglist.in23 SEGV Memory fault
28 STKFLT Stack fault
/macosx-10.10/procmail-14/procmail/src/
H A Dsublib.c189 goto fault;
207 goto fault;
226 fault:
/macosx-10.10/xnu-2782.1.97/bsd/dev/
H A Dmem.c197 goto fault;
199 goto fault;
246 fault:
/macosx-10.10/ruby-106/ruby/lib/xmlrpc/
H A Dparser.rb50 # Raised when the remote procedure returns a fault-structure, which has two
174 def self.fault(hash) singleton method in class:XMLRPC.Convert
181 raise "wrong fault-structure: #{hash.inspect}"
365 hasOnlyOneChild(node, %w(params fault))
371 when "fault"
372 [ false, fault(child) ]
398 def fault(node) method in class:XMLRPC.XMLParser
399 nodeMustBe(node, "fault")
402 Convert.fault(f)
488 if parser.fault !
[all...]
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/
H A DTest.pm115 ok(!defined $s->call->fault);
277 my $fault = $s->die_with_fault()->fault;
278 ok($fault->{faultcode} =~ ':Server.Custom');
279 ok($fault->{faultstring} eq 'Died in server method');
280 ok(ref $fault->{detail}->{BadError} eq 'BadError');
281 ok($fault->{faultactor} eq 'http://www.soaplite.com/custom');
/macosx-10.10/CPANInternal-159.1/Crypt-SSLeay-0.64/
H A DMakefile.PL68 network connectivity, these tests may fail (through no fault of the code).
/macosx-10.10/dtrace-147/libdtrace/
H A Ddt_error.c193 dtrace_faultstr(dtrace_hdl_t *dtp, int fault) argument
210 { DTRACEFLT_LIBRARY, "library-level fault" },
215 if (faults[i].code == fault)
219 return ("unknown fault");
/macosx-10.10/vim-55/runtime/syntax/
H A Dcrm.vim23 syn keyword crmStatement fail fault goto hash intersect isolate input learn
/macosx-10.10/xnu-2782.1.97/tools/tests/perf_index/
H A DMakefile41 $(DSTROOT)/perfindex-fault.dylib \
54 $(DSTROOT)/perfindex-fault.dylib: $(OBJROOT)/test_fault_helper.o
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dcssmclient.cpp372 fault(subService, type);
380 void ModuleEvents::fault(uint32 subService, CSSM_SERVICE_TYPE type) { } function in class:ModuleEvents
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dcssmclient.cpp372 fault(subService, type);
380 void ModuleEvents::fault(uint32 subService, CSSM_SERVICE_TYPE type) { } function in class:ModuleEvents
/macosx-10.10/emacs-93/emacs/lisp/mail/
H A Dreporter.el250 (condition-case fault
274 (format "%s" fault)
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/
H A DSOAP-service.tcl72 fault 0
267 incr stats(fault)
H A DSOAP.tcl689 # Prepare a SOAP fault message
692 # faultstring - summary of the fault
697 proc ::SOAP::fault {faultcode faultstring {detail {}}} {
998 array set fault [decomposeSoap $faultNode]
1000 if {![info exists fault(detail)]} { set fault(detail) {}}
1001 return -code error -errorinfo $fault(detail) \
1002 [list $fault(faultcode) $fault(faultstring)]
1041 # Parse an XML-RPC response payload. Check for fault respons
[all...]
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/bin/
H A DSOAPsh.pl24 defined($res) && $res->fault ? print(STDERR join "\n", "--- SOAP FAULT ---", $res->faultcode, $res->faultstring, '') :

Completed in 213 milliseconds

123