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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/android/
android_sw_winsys.h 40 buffer_handle_t handle; member in struct:android_winsys_handle
  /external/compiler-rt/test/asan/TestCases/Linux/
stack-trace-dlclose.cc 24 void *handle; variable
27 void *handle = dlopen(SO_DIR "/stack_trace_dlclose.so", RTLD_LAZY); local
28 assert(handle);
29 void *(*foo)() = (void *(*)())dlsym(handle, "foo");
33 dlclose(handle);
  /external/iptables/iptables/
ip6tables-standalone.c 45 struct xtc_handle *handle = NULL; local
61 ret = do_command6(argc, argv, &table, &handle, false);
63 ret = ip6tc_commit(handle);
64 ip6tc_free(handle);
iptables-standalone.c 47 struct xtc_handle *handle = NULL; local
64 ret = do_command4(argc, argv, &table, &handle, false);
66 ret = iptc_commit(handle);
67 iptc_free(handle);
  /external/ltrace/testsuite/ltrace.minor/
libdl-simple.c 6 void *handle; local
10 handle = dlopen ("liblibdl-simple.so", RTLD_LAZY);
11 if (!handle) {
16 test = dlsym(handle, "test_libdl");
23 dlclose(handle);
  /external/mesa3d/src/gallium/winsys/sw/android/
android_sw_winsys.h 40 buffer_handle_t handle; member in struct:android_winsys_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);
  /hardware/qcom/media/mm-video-legacy/vidc/venc/inc/
omx_video_encoder.h 60 class venc_dev *handle; member in class:omx_venc
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/inc/
omx_video_encoder.h 61 class venc_dev *handle; member in class:omx_venc
  /external/chromium_org/extensions/renderer/resources/
uncaught_exception_handler.js 14 exports.handle = function(message, e) {
18 // |newHandler| A function which matches |exports.handle|.
  /external/chromium_org/net/http/
http_basic_state_unittest.cc 17 ClientSocketHandle* const handle = new ClientSocketHandle; local
18 // Ownership of handle is passed to |state|.
19 const HttpBasicState state(handle, true);
20 EXPECT_EQ(handle, state.connection());
30 ClientSocketHandle* const handle = new ClientSocketHandle; local
31 HttpBasicState state(handle, false);
35 EXPECT_EQ(handle, released_connection.get());
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
echo_cancellation_unittest.cc 28 void* handle = NULL; local
29 ASSERT_EQ(0, WebRtcAec_Create(&handle));
30 EXPECT_TRUE(handle != NULL);
32 EXPECT_EQ(0, WebRtcAec_Free(handle));
36 void* handle = NULL; local
37 ASSERT_EQ(0, WebRtcAec_Create(&handle));
38 EXPECT_TRUE(handle != NULL);
40 AecCore* aec_core = WebRtcAec_aec_core(handle);
43 // level |aec_core| handle.
47 EXPECT_EQ(0, WebRtcAec_Free(handle));
    [all...]
  /external/mockito/src/org/mockito/invocation/
MockHandler.java 27 * @param invocation The invocation to handle
32 Object handle(Invocation invocation) throws Throwable; method in interface:MockHandler
  /hardware/ti/omap4-aah/camera/inc/
VideoMetadata.h 27 void* handle; member in struct:__anon42511
  /hardware/ti/omap4xxx/camera/inc/
VideoMetadata.h 27 void* handle; member in struct:__anon42632
  /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_org/base/process/
process.h 20 explicit Process(ProcessHandle handle) : process_(handle) {
23 // A handle to the current process.
28 // Get/Set the handle for this process. The handle will be 0 if the process
30 ProcessHandle handle() const { return process_; } function in class:base::Process
31 void set_handle(ProcessHandle handle) {
32 process_ = handle;
41 // Close the process handle. This will not terminate the process.
  /external/chromium_org/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/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_policy_browsertest.cc 48 base::ProcessHandle handle; local
51 &handle);
58 base::WaitForExitCodeWithTimeout(handle, &exit_code,
63 base::CloseProcessHandle(handle);
71 base::ProcessHandle handle; local
74 &handle);
79 base::WaitForExitCodeWithTimeout(handle, &exit_code,
84 base::CloseProcessHandle(handle);
  /external/chromium_org/chrome/browser/printing/
printer_manager_dialog_linux.cc 52 base::ProcessHandle handle; local
53 if (!base::LaunchProcess(argv, base::LaunchOptions(), &handle)) {
57 base::EnsureProcessGetsReaped(handle);
  /external/chromium_org/content/public/browser/
child_process_data.h 28 // The handle to the process. May have value kNullProcessHandle if no process
31 base::ProcessHandle handle; member in struct:content::ChildProcessData
34 : process_type(process_type), id(0), handle(base::kNullProcessHandle) {
  /external/deqp/framework/delibs/dethread/win32/
deThreadLocalWin32.c 36 DWORD handle = TlsAlloc(); local
37 if (handle == TLS_OUT_OF_INDEXES)
39 return (deThreadLocal)handle;
  /external/jarjar/src/main/com/tonicsystems/jarjar/
TextDepHandler.java 31 protected void handle(String from, String to) throws IOException { method in class:TextDepHandler
  /external/libusb-compat/libusb/
usbi.h 49 libusb_device_handle *handle; member in struct:usb_dev_handle
  /external/owasp/sanitizer/src/main/org/owasp/html/
Handler.java 40 void handle(T x); method in interface:Handler
44 public void handle(Object x) {
54 public void handle(Throwable th) {

Completed in 724 milliseconds

1 2 3 4 5 6 7 8 91011>>