Searched refs:service (Results 1 - 25 of 690) sorted by relevance

1234567891011>>

/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/examples/WSDL/
H A Dstub3.pl11 my $service = StockQuoteService->new;
12 print $service->getQuote('MSFT'), "\n";
H A Ddynamic3.pl9 my $service = SOAP::Lite
10 -> service('http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl');
12 print $service->getQuote('MSFT'), "\n";
H A Ddynamic1.pl8 # import interface. All methods from loaded service are imported by default
10 service => 'http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl',
11 # service => 'file:/your/local/path/xmethods-delayed-quotes.wsdl',
12 # service => 'file:./xmethods-delayed-quotes.wsdl',
H A Ddynamic2.pl10 -> service('http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl')
H A Ddynamic4.pl11 -> service('http://www.xmethods.net/sd/StockQuoteImport.wsdl')
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/examples/COM/
H A Dservice.vbs3 MsgBox CreateObject("SOAP.Lite").new.service("http://www.xmethods.net/sd/StockQuoteService.wsdl").getQuote("MSFT")
/macosx-10.10/ppp-786.1.1/Controller/
H A DsessionTracer.h29 void sessionTracerStop (struct service *);
30 void sessionTracerLogEstablished (struct service *);
H A Dreachability.h8 struct service;
10 typedef void (^ReachabilityChangedBlock)(struct service *serv);
13 void reachability_clear(struct service *serv);
14 void reachability_reset(struct service *serv);
H A Dppp_manager.h32 int ppp_new_service(struct service *serv);
33 int ppp_dispose_service(struct service *serv);
34 int ppp_setup_service(struct service *serv);
36 int ppp_start(struct service *serv, CFDictionaryRef options, uid_t uid, gid_t gid, mach_port_t bootstrap, mach_port_t au_session, u_int8_t onTraffic, u_int8_t onDemand);
37 int ppp_stop(struct service *serv, int signal);
38 int ppp_suspend(struct service *serv);
39 int ppp_resume(struct service *serv);
40 SCNetworkConnectionStatus ppp_getstatus(struct service *serv);
41 int ppp_getstatus1(struct service *serv, void **reply, u_int16_t *replylen);
42 int ppp_copyextendedstatus(struct service *ser
[all...]
H A Dflow_divert_controller.h11 void flow_divert_init(struct service *serv, int index);
12 void flow_divert_dispose(struct service *serv, int index);
13 CFDictionaryRef flow_divert_copy_token_parameters(struct service *serv);
14 CFNumberRef flow_divert_copy_service_identifier(struct service *serv);
H A DmessageTracer.h50 #define SESSIONTRACERSTOP(service) {service->connecttime = 0; service->establishtime = 0;}
51 #define SESSIONTRACERESTABLISHED(service) {if (!service->establishtime) \
52 service->establishtime = mach_absolute_time() * gTimeScaleSeconds;}
54 #define SESSIONTRACERSTOP(service) sessionTracerStop(service)
55 #define SESSIONTRACERESTABLISHED(service) sessionTracerLogEstablished(service)
[all...]
H A Dipsec_manager.h79 int ipsec_new_service(struct service *serv);
80 int ipsec_dispose_service(struct service *serv);
81 int ipsec_setup_service(struct service *serv);
83 int ipsec_start(struct service *serv, CFDictionaryRef options, uid_t uid, gid_t gid, mach_port_t bootstrap, u_int8_t onTraffic, u_int8_t onDemand);
84 int ipsec_stop(struct service *serv, int signal);
85 int ipsec_getstatus(struct service *serv);
86 int ipsec_copyextendedstatus(struct service *serv, CFDictionaryRef *statusdict);
87 int ipsec_copystatistics(struct service *serv, CFDictionaryRef *statsdict);
88 int ipsec_getconnectdata(struct service *serv, CFDictionaryRef *options, int all);
90 int ipsec_install(struct service *ser
[all...]
H A Dnetwork_detection.h8 boolean_t check_network(struct service *serv);
10 int copy_trigger_info(struct service *serv, CFMutableDictionaryRef *ondemand_dict_cp, CFMutableArrayRef *trigger_array_cp, CFMutableDictionaryRef *trigger_dict_cp);
H A Dscnc_cache.h28 scnc_cache_init_service (struct service *serv);
32 scnc_cache_routing_table (struct service *serv, CFDictionaryRef serviceConfig, Boolean useOldKeys, Boolean doFullTunnel);
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/examples/SOAP/
H A Dsimple3.pl10 -> service('http://soap.4s4c.com/ssss4c/soap.asp?WSDL')
/macosx-10.10/bootp-298/bootplib/
H A Dioregpath.c30 io_registry_entry_t service; local
34 service = IORegistryEntryFromPath(kIOMasterPortDefault, path);
35 if (service == MACH_PORT_NULL) {
38 status = IORegistryEntryCreateCFProperties(service,
45 IOObjectRelease(service);
52 io_registry_entry_t service; local
55 service = IORegistryEntryFromPath(kIOMasterPortDefault, path);
56 if (service == MACH_PORT_NULL) {
59 val = IORegistryEntryCreateCFProperty(service, prop,
62 IOObjectRelease(service);
71 io_registry_entry_t service; local
[all...]
/macosx-10.10/mDNSResponder-561.1.1/mDNSShared/Java/
H A DBaseListener.java28 @param service
29 The service that encountered the failure.
34 void operationFailed( DNSSDService service, int errorCode); argument
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/samples/
H A Dtest-WSDL.pl23 my $service = SOAP::Lite
24 ->service('http://localhost/tclsoap/WSDL/interop.wsdl');
26 my $voidResponse = $service->echoVoid();
29 print "echoString: " . $service->echoString('Hello, TclSOAP') . "\n";
30 print "echoInteger: " . $service->echoInteger(3) . "\n";
31 print "echoFloat: " . $service->echoFloat(2.1) . "\n";
33 my $strings = $service->echoStringArray(['Hello','Tcl','SOAP']);
36 my $ints = $service->echoIntegerArray([45, 2, -18, 0]);
39 my $floats = $service->echoFloatArray([4.5, -2.0, 0, 3e-2]);
42 my $struct = $service
[all...]
/macosx-10.10/IOKitUser-1050.1.21/ioserviceauthorized/
H A Dopen.h26 int _Open( io_service_t service, int oflag, uint64_t authorizationID );
/macosx-10.10/IOGraphics-485/tools/
H A Dsetdparam.c14 io_service_t service; local
37 for(i = 0; i < max; i++, IOObjectRelease(service) )
39 service = CGDisplayIOServicePort(displayIDs[i]);
40 if(MACH_PORT_NULL == service)
43 err = IORegistryEntryGetPath(service, kIOServicePlane, path);
46 printf("IORegistryEntryGetPath(err 0x%x, %d)\n", err, service);
50 service = IODisplayForFramebuffer(service, kNilOptions);
51 if(MACH_PORT_NULL == service)
53 printf("no display there\n", err, service);
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dget_port.c38 const char *service,
44 if ((sp = roken_getservbyname (service, proto)) == NULL) {
46 krb5_warnx(context, "%s/%s unknown service, using default port %d",
47 service, proto, default_port);
37 krb5_getportbyname(krb5_context context, const char *service, const char *proto, int default_port) argument
/macosx-10.10/IOKitUser-1050.1.21/IOServiceAuthorizeAgent/
H A Ddevice.m32 CFDictionaryRef _DeviceCopyIdentifier( io_service_t service )
36 if ( IOObjectConformsTo( service, kIOMediaClass ) )
38 identifier = _IOMediaCopyIdentifier( service );
40 else if ( IOObjectConformsTo( service, kIOUSBDeviceClassName ) )
42 identifier = _IOUSBDeviceCopyIdentifier( service );
89 Boolean _DeviceIsValid( io_service_t service )
93 if ( IOObjectConformsTo( service, kIOMediaClass ) )
95 valid = _IOMediaIsValid( service );
97 else if ( IOObjectConformsTo( service, kIOUSBDeviceClassName ) )
99 valid = _IOUSBDeviceIsValid( service );
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Dinet_trigger.c9 /* int inet_trigger(service, buf, len, timeout)
10 /* char *service;
24 /* .IP service
67 char *service; member in struct:inet_trigger
81 msg_warn("%s: read timeout for service %s", myname, ip->service);
85 msg_warn("%s: close %s: %m", myname, ip->service);
86 myfree(ip->service);
93 int inet_trigger(const char *service, const char *buf, ssize_t len, int timeout) argument
100 msg_info("%s: service
[all...]
H A Dstream_trigger.c9 /* int stream_trigger(service, buf, len, timeout)
10 /* const char *service;
23 /* .IP service
64 char *service; member in struct:stream_trigger
78 msg_warn("%s: read timeout for service %s", myname, sp->service);
82 msg_warn("%s: close %s: %m", myname, sp->service);
83 myfree(sp->service);
89 int stream_trigger(const char *service, const char *buf, ssize_t len, int timeout) argument
96 msg_info("%s: service
[all...]
H A Dunix_trigger.c9 /* int unix_trigger(service, buf, len, timeout)
10 /* const char *service;
23 /* .IP service
65 char *service; member in struct:unix_trigger
79 msg_warn("%s: read timeout for service %s", myname, up->service);
83 msg_warn("%s: close %s: %m", myname, up->service);
84 myfree(up->service);
90 int unix_trigger(const char *service, const char *buf, ssize_t len, int timeout) argument
97 msg_info("%s: service
[all...]

Completed in 177 milliseconds

1234567891011>>