HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 1 - 25 of 535) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iptables/iptables/
ip6tables-standalone.c 50 struct ip6tc_handle *handle = NULL; local
66 ret = do_command6(argc, argv, &table, &handle);
68 ret = ip6tc_commit(handle);
69 ip6tc_free(handle);
iptables-standalone.c 51 struct iptc_handle *handle = NULL; local
66 ret = do_command4(argc, argv, &table, &handle);
68 ret = iptc_commit(handle);
69 iptc_free(handle);
  /external/valgrind/main/cachegrind/tests/
dlclose.c 15 void *handle; local
19 handle = dlopen ("./myprint.so", RTLD_LAZY);
20 if (!handle) {
25 myprint = dlsym(handle, "myprint");
34 dlclose(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))
  /hardware/qcom/media/mm-video/vidc/venc/inc/
omx_video_encoder.h 54 class venc_dev *handle; member in class:omx_venc
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.cpp 42 ShareableBitmap::Handle handle; local
43 bitmap->createHandle(handle);
45 encoder->encode(handle);
50 ShareableBitmap::Handle handle; local
51 if (!decoder->decode(handle))
54 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(handle);
  /hardware/ti/omap4xxx/camera/inc/
VideoMetadata.h 27 void* handle; member in struct:__anon16783
  /development/tools/emulator/opengl/tests/ut_renderer/
Renderer.h 32 unsigned int handle; member in class:Renderer::ClientHandle
33 ClientHandle(unsigned int _pid, unsigned int _handle) : pid(_pid), handle(_handle) {}
36 bool val = (pid == p.pid) ? handle < p.handle : pid < p.pid;
42 int createSurface(RenderingThread *thread, const ClientHandle & handle);
43 int destroySurface(RenderingThread *thread, const ClientHandle &handle);
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestHandler.java 50 void handle(HttpRequest request, HttpResponse response, HttpContext context) method in interface:HttpRequestHandler
  /external/chromium/chrome/browser/
browser_util_win.cc 19 static HANDLE handle = NULL; local
26 if (handle != NULL)
27 CloseHandle(handle);
28 handle = CreateEvent(NULL, TRUE, TRUE, exe.c_str());
  /external/qemu/distrib/sdl-1.2.12/src/loadso/beos/
SDL_sysloadso.c 37 void *handle = NULL; local
42 handle = (void *) (library_id);
44 return (handle);
48 SDL_LoadFunction(void *handle, const char *name)
51 image_id library_id = (image_id) handle;
60 SDL_UnloadObject(void *handle)
63 if (handle != NULL) {
64 library_id = (image_id) handle;
  /external/qemu/distrib/sdl-1.2.12/src/loadso/mint/
SDL_sysloadso.c 38 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)
48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle);
55 void SDL_UnloadObject(void *handle)
57 if ( handle != NULL ) {
58 ldg_close((LDG *)handle, ldg_global);
  /external/qemu/distrib/sdl-1.2.12/src/thread/
SDL_thread_c.h 55 SYS_ThreadHandle handle; member in struct:SDL_Thread
  /libcore/luni/src/main/java/javax/security/auth/callback/
CallbackHandler.java 23 * Needs to be implemented by classes that want to handle authentication
24 * {@link Callback}s. A single method {@link #handle(Callback[])} must be
36 * Callback}s it actually wants to handle and in which way. For example, a
40 * values. If a {@code CallbackHandler} is not able to handle a specific
49 * if the {@code CallbackHandler} is not able to handle a
52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; method in interface:CallbackHandler
  /sdk/rule_api/src/com/android/ide/common/api/
INodeHandler.java 34 void handle(INode node); method in interface:INodeHandler
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
RadioGroupRule.java 38 INode handle = node.appendChild(LayoutConstants.FQCN_RADIO_BUTTON); local
39 handle.setAttribute(ANDROID_URI, ATTR_ID, String.format("@+id/radio%d", i));
41 handle.setAttribute(ANDROID_URI, ATTR_CHECKED, VALUE_TRUE);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
tmpCallbackHandler.java 36 public void handle(Callback[] callback) throws IOException, method in class:tmpCallbackHandler
  /external/bluetooth/bluez/test/
simple-service 115 handle = service.AddRecord(xml) variable
117 print "Service record with handle 0x%04x added" % (handle)
127 service.RemoveRecord(dbus.UInt32(handle))
  /external/chromium/base/memory/
scoped_open_process.h 42 ProcessHandle handle() const { return handle_; } function in class:base::ScopedOpenProcess
  /external/chromium/base/
sync_socket.h 26 typedef HANDLE Handle;
28 typedef int Handle;
31 // Creates a SyncSocket from a Handle. Used in transport.
32 explicit SyncSocket(Handle handle) : handle_(handle) { }
44 // Note it is not safe to send messages from the same socket handle by
63 // Extracts the contained handle. Used for transferring between
65 Handle handle() const { return handle_; function in class:base::SyncSocket
    [all...]
  /external/chromium/base/test/
multiprocess_test.cc 52 ProcessHandle handle = static_cast<ProcessHandle>(NULL); local
54 false, true, &handle); local
55 return handle;
66 ProcessHandle handle = kNullProcessHandle; local
68 fds_to_map, false, &handle);
69 return handle;
  /external/chromium/chrome/browser/webdata/
web_data_service_test_util.h 20 virtual void OnWebDataServiceRequestDone(WebDataService::Handle handle,
23 handle_ = handle;
31 WebDataService::Handle handle() { return handle_; } function in class:AutofillWebDataServiceConsumer
35 WebDataService::Handle handle_;
  /external/chromium/net/disk_cache/
cache_util_win.cc 22 HANDLE handle = FindFirstFile(name.c_str(), &data); local
23 if (handle == INVALID_HANDLE_VALUE)
35 } while (FindNextFile(handle, &data));
37 FindClose(handle);
65 // file to open. Note that this code assumes that we have a handle to the
66 // file at all times (even now), so nobody can have a handle that prevents
  /external/chromium/third_party/libjingle/source/talk/base/
latebindingsymboltable.cc 53 DllHandle handle = dlopen(dll_name, RTLD_NOW); local
57 if (handle == kInvalidDllHandle) {
60 return handle;
63 void InternalUnloadDll(DllHandle handle) {
65 if (dlclose(handle) != 0) {
73 static bool LoadSymbol(DllHandle handle,
77 *symbol = dlsym(handle, symbol_name);
95 bool InternalLoadSymbols(DllHandle handle,
104 if (!LoadSymbol(handle, symbol_names[i], &symbols[i])) {
win32window.h 46 HWND handle() const { return wnd_; } function in class:talk_base::Win32Window

Completed in 841 milliseconds

1 2 3 4 5 6 7 8 91011>>