Searched refs:handle (Results 76 - 100 of 1446) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/
H A DtclLoadShl.c56 dlsym(handle, symbol)
57 void *handle;
61 if (shl_findsym((shl_t *)&handle, symbol,
75 dlclose(handle)
76 void *handle;
78 return shl_unload((shl_t) handle);
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A DtclLoadShl.c56 VOID *dlsym(handle, symbol)
57 VOID *handle;
61 if (shl_findsym((shl_t *)&handle, symbol,
73 int dlclose(handle)
74 VOID *handle;
76 return shl_unload((shl_t) handle);
/macosx-10.10.1/apr-32/apr-util/apr-util/test/
H A Dtestdbd.c34 static void test_statement(abts_case *tc, apr_dbd_t* handle, argument
40 rv = apr_dbd_query(driver, handle, &nrows, sql);
45 static void create_table(abts_case *tc, apr_dbd_t* handle, argument
53 test_statement(tc, handle, driver, sql);
56 static void drop_table(abts_case *tc, apr_dbd_t* handle, argument
60 test_statement(tc, handle, driver, sql);
63 static void delete_rows(abts_case *tc, apr_dbd_t* handle, argument
67 test_statement(tc, handle, driver, sql);
71 static void insert_data(abts_case *tc, apr_dbd_t* handle, argument
83 rv = apr_dbd_query(driver, handle,
89 select_rows(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver, int count) argument
139 test_escape(abts_case *tc, apr_dbd_t *handle, const apr_dbd_driver_t *driver) argument
147 test_dbd_generic(abts_case *tc, apr_dbd_t* handle, const apr_dbd_driver_t* driver) argument
180 apr_dbd_t* handle = NULL; local
208 apr_dbd_t* handle = NULL; local
[all...]
/macosx-10.10.1/CPANInternal-159.1/IO-SessionData-1.03/lib/IO/
H A DSessionSet.pm48 # Add a handle to the session set. Will automatically
49 # create a IO::SessionData wrapper around the handle.
52 my ($handle,$writeonly) = @_;
53 warn "Adding a new session for $handle.\n" if $DEBUG;
54 return $self->{sessions}{$handle} =
55 $self->SessionDataClass->new($self,$handle,$writeonly);
59 # Remove a session from the session set. May pass either a handle or
64 my $handle = $self->to_handle($thing);
66 warn "Deleting session $sess handle $handle
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/krb5/
H A Diter_cred.c57 gsskrb5_cred handle; local
84 handle = calloc(1, sizeof(*handle));
85 if (handle == NULL) {
90 HEIMDAL_MUTEX_init(&handle->cred_id_mutex);
92 handle->usage = GSS_C_INITIATE;
93 handle->principal = principal;
96 handle->principal, &handle->endtime);
97 handle
[all...]
/macosx-10.10.1/apr-32/apr/apr/dso/beos/
H A Ddso.c26 if (dso->handle > 0 && unload_add_on(dso->handle) < B_NO_ERROR)
28 dso->handle = -1;
46 (*res_handle)->handle = newid;
53 APR_DECLARE(apr_status_t) apr_dso_unload(apr_dso_handle_t *handle)
55 return apr_pool_cleanup_run(handle->pool, handle, dso_cleanup);
58 APR_DECLARE(apr_status_t) apr_dso_sym(apr_dso_handle_sym_t *ressym, apr_dso_handle_t *handle,
66 err = get_image_symbol(handle->handle, symnam
[all...]
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_NOLOAD/
H A Dmain.c39 void* handle = dlopen("libfoo.dylib", RTLD_NOLOAD); local
40 if ( handle == NULL ) {
49 void* sym = dlsym(handle, "foo");
52 FAIL("dlsym(handle, \"foo\") failed but it should have worked: %s", msg);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-initializer/
H A Dmain.c34 void* handle = dlopen(path, RTLD_LAZY); local
35 if ( handle == NULL ) {
40 getInitCountProc sym = (getInitCountProc)dlsym(handle, "getInitCount");
42 FAIL("dlsym(handle, \"getInitCount\") failed");
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-leak/
H A Dmain.c36 void* handle = dlopen("libfoo.dylib", RTLD_LAZY); local
37 if ( handle != NULL )
38 dlclose(handle);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-search-leak/
H A Dmain.c36 void* handle = dlopen("libfoo.dylib", RTLD_LAZY); local
37 if ( handle != NULL )
38 dlclose(handle);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlsym-RTLD_SELF/
H A Dmain.c50 void* handle = dlopen(pathToLoad, RTLD_LAZY); local
51 if ( handle == NULL ) {
56 TestProc sym = (TestProc)dlsym(handle, "test");
58 FAIL("dlsym(handle, \"test\") failed");
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/interpose-dlsym/
H A Dmain.c34 void* handle = dlopen("/usr/lib/libSystem.B.dylib", RTLD_LAZY); local
35 if ( handle == NULL ) {
39 void* dlsym_free = dlsym(handle, "free");
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/interpose-dynamic-dlsym/
H A Dmain.c35 void* handle = dlopen("libfoo.dylib", RTLD_LAZY); local
36 if ( handle == NULL ) {
40 FooProc dlsym_foo = (FooProc)dlsym(handle, "foo");
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/rpath-install-name/
H A Dmain.c39 void* handle = dlopen("libbar.dylib", RTLD_LAZY); local
40 if ( handle == NULL ) {
46 BarProc pBar = (BarProc)dlsym(handle, "bar");
/macosx-10.10.1/tcl-105/tcl/tcl/win/
H A DtclWinLoad.c25 * Dynamically loads a binary code file into memory and returns a handle
51 HINSTANCE handle;
61 handle = (*tclWinProcs->loadLibraryExProc)(nativeName, NULL,
63 if (handle == NULL) {
74 handle = (*tclWinProcs->loadLibraryExProc)(nativeName, NULL,
79 *loadHandle = (Tcl_LoadHandle) handle;
81 if (handle == NULL) {
147 * Looks up a symbol, by name, through a handle associated with a
165 HINSTANCE handle = (HINSTANCE)loadHandle;
172 proc = (Tcl_PackageInitProc *) GetProcAddress(handle, symbo
50 HINSTANCE handle; local
163 HINSTANCE handle = (HINSTANCE)loadHandle; local
207 HINSTANCE handle; local
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclLoadDl.c45 * a handle to the new code.
70 VOID *handle;
79 handle = dlopen(native, RTLD_NOW | RTLD_GLOBAL);
80 if (handle == NULL) {
89 handle = dlopen(native, RTLD_NOW | RTLD_GLOBAL);
93 if (handle == NULL) {
107 *loadHandle = (Tcl_LoadHandle)handle;
117 * Looks up a symbol, by name, through a handle associated with
135 VOID *handle = (VOID*)loadHandle;
144 proc = (Tcl_PackageInitProc *) dlsym(handle, /* INT
69 VOID *handle; local
133 VOID *handle = (VOID*)loadHandle; local
182 VOID *handle; local
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/win/
H A DtclWinLoad.c26 * a handle to the new code.
51 HINSTANCE handle;
60 handle = (*tclWinProcs->loadLibraryProc)(nativeName);
61 if (handle == NULL) {
70 handle = (*tclWinProcs->loadLibraryProc)(nativeName);
74 *loadHandle = (Tcl_LoadHandle) handle;
76 if (handle == NULL) {
137 * Looks up a symbol, by name, through a handle associated with
154 HINSTANCE handle = (HINSTANCE)loadHandle;
161 proc = (Tcl_PackageInitProc *) GetProcAddress(handle, symbo
50 HINSTANCE handle; local
152 HINSTANCE handle = (HINSTANCE)loadHandle; local
196 HINSTANCE handle; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dmacclient.cpp36 check(CSSM_CSP_CreateMacContext(attachment()->handle(), mAlgorithm,
53 check(CSSM_GenerateMac(handle(), data, count, &mac));
58 check(CSSM_GenerateMacInit(handle()));
65 check(CSSM_GenerateMacUpdate(handle(), data, count));
71 check(CSSM_GenerateMacFinal(handle(), &mac));
82 check(CSSM_VerifyMac(handle(), data, count, &mac));
87 check(CSSM_VerifyMacInit(handle()));
94 check(CSSM_VerifyMacUpdate(handle(), data, count));
100 check(CSSM_VerifyMacFinal(handle(), &mac));
H A Dsignclient.cpp35 check(CSSM_CSP_CreateSignatureContext(attachment()->handle(), mAlgorithm,
48 check(CSSM_SignData(handle(), data, count, mSignOnly, &signature));
53 check(CSSM_SignDataInit(handle()));
60 check(CSSM_SignDataUpdate(handle(), data, count));
66 check(CSSM_SignDataFinal(handle(), &signature));
77 check(CSSM_VerifyData(handle(), data, count, mSignOnly, &signature));
82 check(CSSM_VerifyDataInit(handle()));
89 check(CSSM_VerifyDataUpdate(handle(), data, count));
95 check(CSSM_VerifyDataFinal(handle(), &signature));
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dmacclient.cpp36 check(CSSM_CSP_CreateMacContext(attachment()->handle(), mAlgorithm,
53 check(CSSM_GenerateMac(handle(), data, count, &mac));
58 check(CSSM_GenerateMacInit(handle()));
65 check(CSSM_GenerateMacUpdate(handle(), data, count));
71 check(CSSM_GenerateMacFinal(handle(), &mac));
82 check(CSSM_VerifyMac(handle(), data, count, &mac));
87 check(CSSM_VerifyMacInit(handle()));
94 check(CSSM_VerifyMacUpdate(handle(), data, count));
100 check(CSSM_VerifyMacFinal(handle(), &mac));
H A Dsignclient.cpp35 check(CSSM_CSP_CreateSignatureContext(attachment()->handle(), mAlgorithm,
48 check(CSSM_SignData(handle(), data, count, mSignOnly, &signature));
53 check(CSSM_SignDataInit(handle()));
60 check(CSSM_SignDataUpdate(handle(), data, count));
66 check(CSSM_SignDataFinal(handle(), &signature));
77 check(CSSM_VerifyData(handle(), data, count, mSignOnly, &signature));
82 check(CSSM_VerifyDataInit(handle()));
89 check(CSSM_VerifyDataUpdate(handle(), data, count));
95 check(CSSM_VerifyDataFinal(handle(), &signature));
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/regressions/
H A Dssl-51-state.c107 ssl_test_handle *handle =(ssl_test_handle *)h; local
115 return tls_stream_parser_parse(handle->parser, buffer);
120 ssl_test_handle *handle =(ssl_test_handle *)h; local
124 struct RecQueueItem *item = STAILQ_FIRST(&handle->rec_queue);
141 STAILQ_REMOVE_HEAD(&handle->rec_queue, next);
182 ssl_test_handle *handle = (ssl_test_handle *)ctx; local
189 err=tls_buffer_alloc(&item->record, tls_record_encrypted_size(handle->record, content_type, data.length));
192 err=tls_record_encrypt(handle->record, data, content_type, &item->record);
199 STAILQ_INSERT_TAIL(&handle->rec_queue, item, next);
215 ssl_test_handle __unused *handle local
237 ssl_test_handle *handle = (ssl_test_handle *)ctx; local
256 ssl_test_handle __unused *handle = (ssl_test_handle *)ctx; local
269 ssl_test_handle *handle = (ssl_test_handle *)ref; local
278 ssl_test_handle *handle = (ssl_test_handle *)ref; local
286 ssl_test_handle *handle = (ssl_test_handle *)ref; local
294 ssl_test_handle *handle = (ssl_test_handle *)ref; local
303 ssl_test_handle *handle = (ssl_test_handle *)ref; local
312 ssl_test_handle __unused *handle = (ssl_test_handle *)ctx; local
322 ssl_test_handle __unused *handle = (ssl_test_handle *)ctx; local
332 ssl_test_handle __unused *handle = (ssl_test_handle *)ctx; local
342 ssl_test_handle __unused *handle = (ssl_test_handle *)ctx; local
368 ssl_test_handle_destroy(ssl_test_handle *handle) argument
401 ssl_test_handle *handle = calloc(1, sizeof(ssl_test_handle)); local
[all...]
/macosx-10.10.1/apr-32/apr/apr/include/arch/beos/
H A Dapr_arch_dso.h32 image_id handle; /* Handle to the DSO loaded */ member in struct:apr_dso_handle_t
/macosx-10.10.1/apr-32/apr/apr/include/arch/os2/
H A Dapr_arch_dso.h30 HMODULE handle; /* Handle to the DSO loaded */ member in struct:apr_dso_handle_t
/macosx-10.10.1/apr-32/apr/apr/include/arch/os390/
H A Dapr_arch_dso.h31 dllhandle *handle; /* Handle to the DSO loaded */ member in struct:apr_dso_handle_t

Completed in 134 milliseconds

1234567891011>>