Searched refs:handle (Results 101 - 125 of 1446) sorted by relevance

1234567891011>>

/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_cb_dbg.h30 int tool_debug_cb(CURL *handle, curl_infotype type,
/macosx-10.10.1/dcerpc-61/dcerpc/perf/
H A Dperfg.idl105 [in] handle_t handle,
112 [in] handle_t handle,
H A Dperf.idl122 [in] handle_t handle
127 [in] handle_t handle,
139 [in] handle_t handle
147 [in] handle_t handle
155 [in] handle_t handle,
167 [in] handle_t handle,
179 [in] handle_t handle,
192 [in] handle_t handle,
205 [in] handle_t handle,
214 [in] handle_t handle
[all...]
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_NODELETE/
H A Dmain.c37 void* handle = dlopen(path, RTLD_NODELETE); local
38 if ( handle == NULL ) {
43 void* sym = dlsym(handle, "foo");
46 FAIL("dlsym(handle, \"foo\") failed but it should have worked: %s", msg);
50 int result = dlclose(handle);
54 XFAIL("dlclose(handle[%s]) returned %d", path, result);
57 FAIL("dlclose(handle) returned %d", result);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-codesign-dynamic/
H A Dmain.c23 void* handle = dlopen("libfoo.dylib", RTLD_LAZY); local
24 if ( handle != NULL ) {
35 void* handle = dlopen("libfoo.dylib", RTLD_LAZY);
36 if ( handle == NULL ) {
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-notify-bind/
H A Dmain.c49 void* handle = dlopen("libfoo.dylib", RTLD_LAZY); local
50 if ( handle == NULL ) {
55 fooProc fooPtr = (fooProc)dlsym(handle, "foo");
57 FAIL("dlsym(handle, \"foo\") failed");
65 dlclose(handle);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dyld-func-lookup/
H A Dmain.c40 void* handle = dlopen(path, RTLD_LAZY); local
41 if ( handle == NULL ) {
46 proc sym = (proc)dlsym(handle, "check_dyld_func_lookup");
48 FAIL("dlsym(handle, \"foo\") failed");
58 dlclose(handle);
/macosx-10.10.1/ntp-92/include/
H A Dtimepps-SCO.h204 * create PPS handle from file descriptor
210 pps_handle_t *handle /* returned handle */
219 if (!handle) {
228 *handle = malloc(sizeof(pps_unit_t));
229 if (!(*handle)) {
234 memset(*handle, 0, sizeof(pps_unit_t));
235 (*handle)->filedes = filedes;
236 (*handle)->params.api_version = PPS_API_VERS_1;
237 (*handle)
267 time_pps_setparams( pps_handle_t handle, const pps_params_t *params ) argument
330 time_pps_getparams( pps_handle_t handle, pps_params_t *params ) argument
358 time_pps_getcap( pps_handle_t handle, int *mode ) argument
385 time_pps_fetch( pps_handle_t handle, const int tsformat, pps_info_t *ppsinfo, const struct timespec *timeout ) argument
482 time_pps_kcbind( pps_handle_t handle, const int kernel_consumer, const int edge, const int tsformat ) argument
[all...]
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/java/javax/security/auth/callback/
H A DCallbackHandler.java6 public void handle(Callback[] callbacks) method in interface:CallbackHandler
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A DtclLoadDld.c31 * Returns the handle of the newly loaded library, or NULL on
75 dlsym(handle, symbol)
76 VOID *handle;
92 dlclose(handle)
93 VOID *handle;
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dnameprep.c104 idn_nameprep_t handle; local
119 for (handle = nameprep_versions; handle->version != NULL; handle++) {
120 if (strcmp(handle->version, version) == 0) {
121 *handlep = handle;
129 idn_nameprep_destroy(idn_nameprep_t handle) { argument
130 assert(handle != NULL);
138 idn_nameprep_map(idn_nameprep_t handle, const unsigned long *from, argument
140 assert(handle !
202 idn_nameprep_isprohibited(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument
213 idn_nameprep_isunassigned(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument
249 idn_nameprep_isvalidbidi(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument
331 idn_nameprep_destroyproc(void *handle) argument
336 idn_nameprep_mapproc(void *handle, const unsigned long *from, unsigned long *to, size_t tolen) argument
342 idn_nameprep_prohibitproc(void *handle, const unsigned long *str, const unsigned long **found) argument
348 idn_nameprep_unassignedproc(void *handle, const unsigned long *str, const unsigned long **found) argument
354 idn_nameprep_bidiproc(void *handle, const unsigned long *str, const unsigned long **found) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dmm-extern.el50 (defun mm-extern-local-file (handle)
52 (let ((name (cdr (assq 'name (cdr (mm-handle-type handle)))))
61 (defun mm-extern-url (handle)
63 (let ((url (cdr (assq 'url (cdr (mm-handle-type handle)))))
73 (defun mm-extern-anon-ftp (handle)
75 (let* ((params (cdr (mm-handle-type handle)))
89 (defun mm-extern-ftp (handle)
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dopaque.m18 +(void)deleteFoo:(FooHandle)handle;
20 +(void)setValue:(int)value forFoo:(FooHandle)handle;
27 +(void)deleteBar:(BarHandle)handle;
28 +(double)getFirst:(BarHandle)handle;
29 +(double)getSecond:(BarHandle)handle;
84 +(void)deleteFoo:(FooHandle)handle
86 if (handle) {
87 free(handle);
96 +(void)setValue:(int)value forFoo:(FooHandle)handle
98 handle
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/test/
H A Dopaque.m18 +(void)deleteFoo:(FooHandle)handle;
20 +(void)setValue:(int)value forFoo:(FooHandle)handle;
27 +(void)deleteBar:(BarHandle)handle;
28 +(double)getFirst:(BarHandle)handle;
29 +(double)getSecond:(BarHandle)handle;
137 +(void)deleteFoo:(FooHandle)handle
139 if (handle) {
140 free(handle);
149 +(void)setValue:(int)value forFoo:(FooHandle)handle
151 handle
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/test/
H A Dopaque.m18 +(void)deleteFoo:(FooHandle)handle;
20 +(void)setValue:(int)value forFoo:(FooHandle)handle;
27 +(void)deleteBar:(BarHandle)handle;
28 +(double)getFirst:(BarHandle)handle;
29 +(double)getSecond:(BarHandle)handle;
137 +(void)deleteFoo:(FooHandle)handle
139 if (handle) {
140 free(handle);
149 +(void)setValue:(int)value forFoo:(FooHandle)handle
151 handle
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/
H A Dload.c48 VOID *handle; member in struct:Functions
66 VOID *handle = (VOID *) NULL; local
74 if (lib->handle != NULL) {
75 if (lib->handle == TRF_LOAD_FAILED) {
79 return (lib->handle != TRF_LOAD_FAILED) ? TCL_OK : TCL_ERROR;
84 handle = dlopen(buf, RTLD_NOW);
86 while (handle == NULL) {
93 lib->handle = TRF_LOAD_FAILED;
104 handle = dlopen(buf, RTLD_NOW);
109 *p = (char *) dlsym(handle,*
[all...]
/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dlib576.c101 CURL *handle = NULL; local
105 handle = curl_easy_init();
106 if(!handle) {
111 test_setopt(handle, CURLOPT_URL, URL);
112 test_setopt(handle, CURLOPT_WILDCARDMATCH, 1L);
113 test_setopt(handle, CURLOPT_CHUNK_BGN_FUNCTION, chunk_bgn);
114 test_setopt(handle, CURLOPT_CHUNK_END_FUNCTION, chunk_end);
115 test_setopt(handle, CURLOPT_CHUNK_DATA, &chunk_data);
117 res = curl_easy_perform(handle);
120 if(handle)
[all...]
/macosx-10.10.1/CPANInternal-159.1/JSON-RPC-0.96/ex/
H A Dserver.cgi10 $server->dispatch_to({'/API' => 'MyApp', '/API/Subclass' => 'MyApp::Subclass'})->handle();
H A Dserverd.pl9 $server->dispatch_to({'/jsonrpc/API' => 'MyApp', '/jsonrpc/API/Subclass' => 'MyApp::Subclass'})->handle();
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/COM/
H A Dsoap.vbs14 .handle
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/server/
H A Dsoap.cgi15 -> handle
H A Dsoap.fcgi13 -> handle
H A Dsoap.io37 -> handle
H A Dsoap.vbs14 .handle
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_x509_cl/lib/
H A DAppleX509CL.cpp43 CSSM_MODULE_HANDLE handle,
52 return new AppleX509CLSession(handle,
42 makeSession( CSSM_MODULE_HANDLE handle, const CSSM_VERSION &version, uint32 subserviceId, CSSM_SERVICE_TYPE subserviceType, CSSM_ATTACH_FLAGS attachFlags, const CSSM_UPCALLS &upcalls) argument

Completed in 171 milliseconds

1234567891011>>