Searched defs:handle (Results 1 - 25 of 256) sorted by relevance

1234567891011

/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.h28 EAS_EXPORT EAS_LibShutdown (EAS_DATA_HANDLE handle) argument
30 EAS_Shutdown(handle);
/external/iptables/
H A Dip6tables-standalone.c44 ip6tc_handle_t handle = NULL; local
57 ret = do_command6(argc, argv, &table, &handle);
59 ret = ip6tc_commit(&handle);
H A Diptables-standalone.c50 iptc_handle_t handle = NULL; local
63 ret = do_command(argc, argv, &table, &handle);
65 ret = iptc_commit(&handle);
/external/qemu/distrib/sdl-1.2.12/src/loadso/dummy/
H A DSDL_sysloadso.c38 void *SDL_LoadFunction(void *handle, const char *name) argument
45 void SDL_UnloadObject(void *handle) argument
/external/qemu/distrib/sdl-1.2.12/src/thread/
H A DSDL_thread_c.h55 SYS_ThreadHandle handle; member in struct:SDL_Thread
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandler.java50 void handle(HttpRequest request, HttpResponse response, HttpContext context) method in interface:HttpRequestHandler
/external/bluetooth/bluez/test/
H A Dsimple-service115 handle = service.AddRecord(xml) variable
117 print "Service record with handle 0x%04x added" % (handle)
127 service.RemoveRecord(dbus.UInt32(handle))
H A Dtest-service27 handle = adapter.AddRecord(record) variable
28 print "0x%x" % (handle)
/external/iproute2/include/
H A Ddlfcn.h22 static inline void *dlsym(void *handle, const char *sym) argument
24 if (handle != _FAKE_DLFCN_HDL)
34 static inline int dlclose(void *handle) argument
36 return (handle == _FAKE_DLFCN_HDL) ? 0 : 1;
/external/qemu/android/utils/
H A Dmapfile.h35 /* Checks if file handle is a valid one.
37 * boolean: 1 if handle is valid, or 0 if it's not valid.
40 mapfile_is_valid(MapFile* handle) argument
42 return (int)handle != -1;
53 * A valid handle to the opened file on success, or an invalid value on
58 /* Closes a file handle opened with mapfile_open routine.
60 * handle - A handle to a file previously obtained via successful call to
65 extern int mapfile_close(MapFile* handle);
68 * Except for handle paramete
[all...]
/external/qemu/distrib/sdl-1.2.12/src/loadso/beos/
H A DSDL_sysloadso.c37 void *handle = NULL; local
42 handle = (void *) (library_id);
44 return (handle);
48 SDL_LoadFunction(void *handle, const char *name) argument
51 image_id library_id = (image_id) handle;
60 SDL_UnloadObject(void *handle) argument
63 if (handle != NULL) {
64 library_id = (image_id) handle;
/external/qemu/distrib/sdl-1.2.12/src/loadso/dlopen/
H A DSDL_sysloadso.c36 void *handle = dlopen(sofile, RTLD_NOW); local
38 if ( handle == NULL ) {
41 return(handle);
44 void *SDL_LoadFunction(void *handle, const char *name) argument
46 void *symbol = dlsym(handle, name);
53 symbol = dlsym(handle, _name);
62 void SDL_UnloadObject(void *handle) argument
64 if ( handle != NULL ) {
65 dlclose(handle);
/external/qemu/distrib/sdl-1.2.12/src/loadso/mint/
H A DSDL_sysloadso.c38 void *handle = (void *)ldg_open((char *)sofile, ldg_global); local
39 if ( handle == NULL ) {
42 return(handle);
45 void *SDL_LoadFunction(void *handle, const char *name) argument
48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle);
55 void SDL_UnloadObject(void *handle) argument
57 if ( handle != NULL ) {
58 ldg_close((LDG *)handle, ldg_global);
/external/qemu/elff/
H A Delf_mapped_section.cc33 bool ElfMappedSection::map(MapFile* handle, argument
38 mapped_at_ = mapfile_map(handle, offset, size, PROT_READ,
H A Delff_api.cc34 elff_close(ELFF_HANDLE handle) argument
36 if (handle != NULL) {
37 delete reinterpret_cast<ElfFile*>(handle);
42 elff_is_exec(ELFF_HANDLE handle) argument
44 assert(handle != NULL);
45 if (handle == NULL) {
49 return reinterpret_cast<ElfFile*>(handle)->is_exec();
53 elff_get_pc_address_info(ELFF_HANDLE handle, argument
57 assert(handle != NULL && address_info != NULL);
58 if (handle
72 elff_free_pc_address_info(ELFF_HANDLE handle, Elf_AddressInfo* address_info) argument
[all...]
/external/webkit/WebCore/platform/network/curl/
H A DFormDataStreamCurl.h38 FormDataStream(ResourceHandle* handle) argument
39 : m_resourceHandle(handle)
/external/bluetooth/bluez/plugins/
H A Dnetlink.c42 static struct nl_handle *handle; variable in typeref:struct:nl_handle
58 err = nl_recvmsgs_default(handle);
79 handle = nl_handle_alloc();
80 if (!handle) {
81 error("Failed to allocate netlink handle");
85 if (genl_connect(handle) < 0) {
87 nl_handle_destroy(handle);
91 cache = genl_ctrl_alloc_cache(handle);
95 nl_handle_destroy(handle);
102 nl_handle_destroy(handle);
[all...]
/external/e2fsprogs/lib/ss/
H A Dget_readline.c44 void *handle = NULL; local
69 if ((handle = dlopen(cp, RTLD_NOW))) {
75 if (!handle)
78 info->readline_handle = handle;
80 dlsym(handle, "readline");
82 dlsym(handle, "add_history");
84 dlsym(handle, "rl_forced_update_display");
87 dlsym(handle, "rl_completion_matches");
88 if ((t = dlsym(handle, "rl_readline_name")) != NULL)
91 dlsym(handle, "rl_attempted_completion_functio
[all...]
/external/iproute2/tc/
H A Df_basic.c38 static int basic_parse_opt(struct filter_util *qu, char *handle, argument
48 if (handle) {
49 h = strtol(handle, NULL, 0);
51 fprintf(stderr, "Illegal handle \"%s\", must be numeric.\n",
52 handle);
72 unsigned handle; local
74 if (get_tc_classid(&handle, *argv)) {
78 addattr_l(n, MAX_MSG, TCA_BASIC_CLASSID, &handle, 4);
110 struct rtattr *opt, __u32 handle)
119 if (handle)
109 basic_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
[all...]
H A Df_cgroup.c25 static int cgroup_parse_opt(struct filter_util *qu, char *handle, argument
32 if (handle) {
33 h = strtol(handle, NULL, 0);
35 fprintf(stderr, "Illegal handle \"%s\", must be numeric.\n",
36 handle);
85 struct rtattr *opt, __u32 handle)
94 if (handle)
95 fprintf(f, "handle 0x%x ", handle);
84 cgroup_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
/external/openssl/crypto/
H A DLPdir_win.c51 HANDLE handle; member in struct:LP_dir_context_st
97 (*ctx)->handle = FindFirstFile(wdir, &(*ctx)->ctx);
102 (*ctx)->handle = FindFirstFile((TCHAR *)directory, &(*ctx)->ctx);
104 if ((*ctx)->handle == INVALID_HANDLE_VALUE)
114 if (FindNextFile((*ctx)->handle, &(*ctx)->ctx) == FALSE)
148 FindClose((*ctx)->handle);
/external/qemu/distrib/sdl-1.2.12/src/loadso/macos/
H A DSDL_sysloadso.c40 void *handle = NULL; local
70 handle = (void *)(library_id);
74 return(handle);
77 void *SDL_LoadFunction(void *handle, const char *name) argument
82 CFragConnectionID library_id = (CFragConnectionID)handle;
97 void SDL_UnloadObject(void *handle) argument
100 if ( handle != NULL ) {
101 library_id = (CFragConnectionID)handle;
/external/qemu/distrib/sdl-1.2.12/src/loadso/os2/
H A DSDL_sysloadso.c38 HMODULE handle = NULL; local
40 APIRET ulrc = DosLoadModule(buf, sizeof (buf), (char *) sofile, &handle);
43 if ((ulrc != NO_ERROR) || (handle == NULL))
46 return((void *) handle);
49 void *SDL_LoadFunction(void *handle, const char *name) argument
53 APIRET ulrc = DosQueryProcAddr((HMODULE)handle, 0, (char *)name, &symbol);
55 loaderror = "Invalid module handle";
65 void SDL_UnloadObject(void *handle) argument
67 if ( handle != NULL )
68 DosFreeModule((HMODULE) handle);
[all...]
/external/qemu/distrib/sdl-1.2.12/src/loadso/win32/
H A DSDL_sysloadso.c36 void *handle = NULL; local
46 handle = (void *)LoadLibrary(sofile_t);
49 if ( handle == NULL ) {
65 handle = (void *)LoadLibrary(sofile);
68 if ( handle == NULL ) {
78 if ( handle == NULL ) {
81 return(handle);
84 void *SDL_LoadFunction(void *handle, const char *name) argument
98 symbol = (void *)GetProcAddress((HMODULE)handle, name_t);
115 symbol = (void *)GetProcAddress((HMODULE)handle, nam
132 SDL_UnloadObject(void *handle) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/thread/epoc/
H A DSDL_sysmutex.cpp42 TInt handle; member in struct:SDL_mutex
63 mutex->handle = rmutex.Handle();
73 rmutex.SetHandle(mutex->handle);
89 rmutex.SetHandle(mutex->handle);
102 rmutex.SetHandle(mutex->handle);

Completed in 745 milliseconds

1234567891011