HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 26 - 50 of 1597) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/loadso/os2/
SDL_sysloadso.c 38 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)
53 APIRET ulrc = DosQueryProcAddr((HMODULE)handle, 0, (char *)name, &symbol);
55 loaderror = "Invalid module handle";
65 void SDL_UnloadObject(void *handle)
67 if ( handle != NULL )
68 DosFreeModule((HMODULE) handle);
    [all...]
  /external/chromium/chrome/browser/automation/
automation_resource_tracker.cc 21 int handle = GenerateHandle(); local
22 DCHECK(!ContainsHandleImpl(handle));
24 resource_to_handle_[resource] = handle;
25 handle_to_resource_[handle] = resource;
29 return handle;
36 int handle = resource_to_handle_[resource]; local
37 DCHECK_EQ(resource, handle_to_resource_[handle]);
42 handle_to_resource_.erase(handle);
46 static int handle = 0; local
47 return ++handle;
    [all...]
testing_automation_provider_win.cc 15 void TestingAutomationProvider::ActivateWindow(int handle) {
16 if (window_tracker_->ContainsHandle(handle)) {
17 ::SetActiveWindow(window_tracker_->GetResource(handle));
21 void TestingAutomationProvider::IsWindowMaximized(int handle,
26 HWND hwnd = window_tracker_->GetResource(handle);
35 void TestingAutomationProvider::TerminateSession(int handle, bool* success) {
38 if (browser_tracker_->ContainsHandle(handle)) {
39 Browser* browser = browser_tracker_->GetResource(handle);
45 void TestingAutomationProvider::GetWindowBounds(int handle,
49 HWND hwnd = window_tracker_->GetResource(handle);
    [all...]
  /external/libpcap/
pcap-linux.c 215 static int fix_program(pcap_t *handle, struct sock_fprog *fcode);
217 static int set_kernel_filter(pcap_t *handle, struct sock_fprog *fcode);
218 static int reset_kernel_filter(pcap_t *handle);
227 * Get a handle for a live capture from the given device. You can
240 pcap_t *handle; local
258 /* Allocate a handle for this session. */
260 handle = malloc(sizeof(*handle));
261 if (handle == NULL) {
269 memset(handle, 0, sizeof(*handle))
1694 struct pcap *handle; local
    [all...]
  /external/flac/include/FLAC/
callback.h 56 * for the metadata interfaces to handle I/O.
85 /** This is the opaque handle type used by the callbacks. Typically
97 * \param handle The handle to the data source.
101 typedef size_t (*FLAC__IOCallback_Read) (void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
110 * \param handle The handle to the data source.
114 typedef size_t (*FLAC__IOCallback_Write) (const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
121 * \param handle The handle to the data source
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_loadso.h 54 * to the object handle (or NULL if there was an error).
59 /* Given an object handle, this function looks up the address of the
63 extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name);
66 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
  /external/qemu/distrib/sdl-1.2.12/src/loadso/dummy/
SDL_sysloadso.c 38 void *SDL_LoadFunction(void *handle, const char *name)
45 void SDL_UnloadObject(void *handle)
  /external/quake/quake/src/QW/client/
sys.h 32 void Sys_FileClose (int handle);
33 void Sys_FileSeek (int handle, int position);
34 int Sys_FileRead (int handle, void *dest, int count);
35 int Sys_FileWrite (int handle, void *data, int count);
  /external/quake/quake/src/WinQuake/
sys.h 32 void Sys_FileClose (int handle);
33 void Sys_FileSeek (int handle, int position);
34 int Sys_FileRead (int handle, void *dest, int count);
35 int Sys_FileWrite (int handle, const void *data, int count);
  /external/sqlite/android/
sqlite3_android.h 26 int register_android_functions(sqlite3 * handle, int uit16Storage);
28 int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Storage);
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_loadso.h 54 * to the object handle (or NULL if there was an error).
59 /* Given an object handle, this function looks up the address of the
63 extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name);
66 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_loadso.h 54 * to the object handle (or NULL if there was an error).
59 /* Given an object handle, this function looks up the address of the
63 extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name);
66 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
  /prebuilt/windows/sdl/host/include/SDL/
SDL_loadso.h 56 * to the object handle (or NULL if there was an error).
61 /* Given an object handle, this function looks up the address of the
65 extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name);
68 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
  /prebuilt/windows/sdl/include/SDL/
SDL_loadso.h 54 * to the object handle (or NULL if there was an error).
59 /* Given an object handle, this function looks up the address of the
63 extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name);
66 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
  /external/qemu/distrib/sdl-1.2.12/src/thread/dc/
SDL_systhread.c 34 thread->handle = thd_create(SDL_RunThread,args);
35 if (thread->handle == NULL) {
54 thd_wait(thread->handle);
59 thd_destroy(thread->handle);
  /external/webkit/LayoutTests/http/tests/resources/
portabilityLayer.php 25 $handle = fopen($filename, "w"); variable
26 if (!$handle)
28 $bytesWritten = fwrite($handle, $data);
29 if (!fclose($handle))
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovieWinTimer.h 36 void setSharedTimerInstanceHandle(HINSTANCE handle);
  /external/webkit/Source/WebCore/platform/network/
DataURL.cpp 41 void handleDataURL(ResourceHandle* handle)
43 ASSERT(handle->firstRequest().url().protocolIs("data"));
44 String url = handle->firstRequest().url().string();
48 handle->client()->cannotShowURL(handle);
68 response.setURL(handle->firstRequest().url());
72 handle->client()->didReceiveResponse(handle, response);
77 handle->client()->didReceiveData(handle, out.data(), out.size(), 0)
    [all...]
  /external/webrtc/src/modules/audio_processing/main/source/
high_pass_filter_impl.h 41 virtual int InitializeHandle(void* handle) const;
42 virtual int ConfigureHandle(void* handle) const;
43 virtual int DestroyHandle(void* handle) const;
45 virtual int GetHandleError(void* handle) const;
noise_suppression_impl.h 43 virtual int InitializeHandle(void* handle) const;
44 virtual int ConfigureHandle(void* handle) const;
45 virtual int DestroyHandle(void* handle) const;
47 virtual int GetHandleError(void* handle) const;
  /sdk/rule_api/src/com/android/ide/common/api/
INodeHandler.java 34 void handle(INode node); method in interface:INodeHandler
  /external/bluetooth/glib/gmodule/
gmodule-dl.c 97 gpointer handle; local
99 handle = dlopen (file_name,
101 if (!handle)
104 return handle;
110 gpointer handle; local
116 handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
117 if (!handle)
120 return handle;
124 _g_module_close (gpointer handle,
134 if (dlclose (handle) != 0
    [all...]
  /external/chromium/net/base/
crypto_module_openssl.cc 16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) {
21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
  /hardware/ti/omap4xxx/ion/
ion.h 27 struct ion_handle **handle);
29 struct ion_handle **handle, size_t *stride);
30 int ion_free(int fd, struct ion_handle *handle);
31 int ion_map(int fd, struct ion_handle *handle, size_t length, int prot,
33 int ion_share(int fd, struct ion_handle *handle, int *share_fd);
34 int ion_import(int fd, int share_fd, struct ion_handle **handle);
  /system/core/fastboot/
usb_windows.c 52 /// Handle to USB interface
55 /// Handle to USB read pipe (endpoint)
58 /// Handle to USB write pipe (endpoint)
70 int recognized_device(usb_handle* handle, ifc_match_func callback);
75 /// Writes data to the opened usb handle
76 int usb_write(usb_handle* handle, const void* data, int len);
78 /// Reads data using the opened usb handle
79 int usb_read(usb_handle *handle, void* data, int len);
81 /// Cleans up opened usb handle
82 void usb_cleanup_handle(usb_handle* handle);
322 usb_handle* handle = NULL; local
    [all...]

Completed in 832 milliseconds

12 3 4 5 6 7 8 91011>>