Searched defs:handle (Results 151 - 175 of 1326) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dshared_memory.h44 // Platform-specific handle of the buffer.
45 Handle handle() const { return handle_; } function in class:webrtc::SharedMemory
54 SharedMemory(void* data, size_t size, Handle handle, int id);
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dmsr_server_win.py79 def handle(self): member in class:MsrRequestHandler
/external/chromium_org/ui/base/resource/
H A Dresource_bundle_win.cc68 void SetResourcesDataDLL(HINSTANCE handle) { argument
69 resources_data_dll = handle;
/external/chromium_org/ui/gl/
H A Dgl_image_shared_memory.cc21 bool GLImageSharedMemory::Initialize(const gfx::GpuMemoryBufferHandle& handle) { argument
25 if (!base::SharedMemory::IsHandleValid(handle.handle))
28 base::SharedMemory shared_memory(handle.handle, true);
30 // Duplicate the handle.
34 DVLOG(0) << "Failed to duplicate shared memory handle.";
/external/chromium_org/v8/tools/testrunner/server/
H A Dlocal_handler.py55 def handle(self): member in class:LocalHandler
H A Dstatus_handler.py78 def handle(self): member in class:StatusHandler
/external/compiler-rt/test/msan/
H A Ddtls_test.c42 void *handle = dlopen(path, RTLD_LAZY); local
43 if (!handle) fprintf(stderr, "%s\n", dlerror());
44 assert(handle != 0);
45 GetTls = (get_t)dlsym(handle, "GetTls");
/external/deqp/framework/delibs/dethread/win32/
H A DdeMutexWin32.c92 HANDLE handle = DE_NULL; local
97 handle = CreateMutex(DE_NULL, FALSE, DE_NULL);
98 return (deMutex)handle;
103 HANDLE handle = (HANDLE)mutex; local
104 CloseHandle(handle);
109 HANDLE handle = (HANDLE)mutex; local
110 DWORD ret = WaitForSingleObject(handle, INFINITE);
116 HANDLE handle = (HANDLE)mutex; local
117 BOOL ret = ReleaseMutex(handle);
123 HANDLE handle local
[all...]
H A DdeSemaphoreWin32.c38 HANDLE handle; local
42 handle = CreateSemaphore(DE_NULL, initialValue, WIN32_SEM_MAX_VALUE, DE_NULL);
43 if (!handle)
46 DE_ASSERT((deSemaphore)handle != 0);
48 return (deSemaphore)handle;
53 HANDLE handle = (HANDLE)semaphore; local
54 CloseHandle(handle);
59 HANDLE handle = (HANDLE)semaphore; local
60 BOOL ret = ReleaseSemaphore(handle, 1, DE_NULL);
66 HANDLE handle local
73 HANDLE handle = (HANDLE)semaphore; local
[all...]
/external/deqp/framework/delibs/deutil/
H A DdeDynamicLibrary.c83 HINSTANCE handle; member in struct:deDynamicLibrary_s
92 library->handle = LoadLibrary(fileName);
93 if (!library->handle)
104 if (library && library->handle)
105 FreeLibrary(library->handle);
111 DE_ASSERT(library && library->handle && symbolName);
112 return (deFunctionPtr)GetProcAddress(library->handle, symbolName);
/external/e2fsprogs/lib/ext2fs/
H A Dmkdir.c36 ext2_extent_handle_t handle; local
105 retval = ext2fs_extent_open2(fs, ino, &inode, &handle);
108 retval = ext2fs_extent_set_bmap(handle, 0, blk, 0);
109 ext2fs_extent_free(handle);
H A Dsymlink.c33 ext2_extent_handle_t handle; local
/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DIPropertyExceptionHandler.java24 void handle(Throwable e); method in interface:IPropertyExceptionHandler
/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);
84 struct rtattr *opt, __u32 handle)
93 if (handle)
94 fprintf(f, "handle 0x%x ", handle);
83 cgroup_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) argument
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DAbstractDepHandler.java32 public void handle(PathClass from, PathClass to) throws IOException { method in class:AbstractDepHandler
41 handle(pair.get(0).toString(), pair.get(1).toString());
45 abstract protected void handle(String from, String to) throws IOException; method in class:AbstractDepHandler
H A DDepHandler.java27 void handle(PathClass from, PathClass to) throws IOException; method in interface:DepHandler
/external/javasqlite/src/main/java/SQLite/
H A DBackup.java10 * Internal handle for the native SQLite API.
13 protected long handle = 0; field in class:Backup
/external/libnl/src/lib/
H A Dqdisc.c49 nl_cli_fatal(err, "Unable to parse handle \"%s\": %s",
57 uint32_t handle; local
60 if ((err = rtnl_tc_str2handle(arg, &handle)) < 0)
61 nl_cli_fatal(err, "Unable to parse handle \"%s\": %s",
64 rtnl_qdisc_set_handle(qdisc, handle);
/external/libsepol/src/
H A Ddebug.c4 #include "handle.h"
21 int sepol_msg_get_level(sepol_handle_t * handle) argument
23 return handle->msg_level;
28 const char *sepol_msg_get_channel(sepol_handle_t * handle)
30 return handle->msg_channel;
35 const char *sepol_msg_get_fname(sepol_handle_t * handle)
37 return handle->msg_fname;
45 sepol_handle_t * handle,
51 switch (sepol_msg_get_level(handle)) {
64 sepol_msg_get_channel(handle), sepol_msg_get_fnam
76 sepol_msg_set_callback(sepol_handle_t * handle, __attribute__ ((format(printf, 3, 4))) void (*msg_callback) (void *varg, sepol_handle_t * handle, const char *fmt, ...), void *msg_callback_arg) argument
[all...]
H A Dpolicydb_convert.c10 int policydb_from_image(sepol_handle_t * handle, argument
20 pf.handle = handle;
24 ERR(handle, "policy image is invalid");
34 int policydb_to_image(sepol_handle_t * handle, argument
46 pf.handle = handle;
48 ERR(handle, "could not compute policy length");
57 ERR(handle, "out of memory");
67 ERR(handle, "coul
[all...]
H A Droles.c8 #include "handle.h"
11 int sepol_role_exists(sepol_handle_t * handle __attribute__ ((unused)),
19 handle = NULL;
24 int sepol_role_list(sepol_handle_t * handle, argument
48 ERR(handle, "out of memory, could not list roles");
/external/lzma/CPP/Windows/
H A DHandle.h26 void Attach(HANDLE handle) { _handle = handle; } argument
29 HANDLE handle = _handle; local
31 return handle;
/external/mesa3d/src/egl/main/
H A Deglsync.h84 * Link a sync to its display and return the handle of the link.
85 * The handle can be passed to client directly.
106 * Lookup a handle to find the linked sync.
107 * Return NULL if the handle has no corresponding linked sync.
110 _eglLookupSync(EGLSyncKHR handle, _EGLDisplay *dpy) argument
112 _EGLSync *sync = (_EGLSync *) handle;
120 * Return the handle of a linked sync, or EGL_NO_SYNC_KHR.

Completed in 6122 milliseconds

1234567891011>>