/external/chromium/base/synchronization/ |
condition_variable_win.cc | 54 HANDLE handle; local 59 handle = waiting_event->handle(); 60 DCHECK(handle); 65 WaitForSingleObject(handle, static_cast<DWORD>(max_time.InMilliseconds())); 76 std::stack<HANDLE> handles; // See FAQ-question-10. 83 handles.push(waiting_list_.PopBack()->handle()); 96 HANDLE handle; local 232 HANDLE ConditionVariable::Event::handle() const { function in class:base::ConditionVariable::Event [all...] |
lock_unittest.cc | 52 PlatformThreadHandle handle = kNullThreadHandle; local 54 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); 82 PlatformThread::Join(handle); 118 PlatformThreadHandle handle = kNullThreadHandle; local 120 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); 122 PlatformThread::Join(handle); 132 PlatformThreadHandle handle = kNullThreadHandle; local 134 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); 136 PlatformThread::Join(handle); 179 PlatformThreadHandle handle = kNullThreadHandle local [all...] |
/external/chromium_org/base/synchronization/ |
lock_unittest.cc | 54 PlatformThreadHandle handle; local 56 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); 84 PlatformThread::Join(handle); 120 PlatformThreadHandle handle; local 122 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); 124 PlatformThread::Join(handle); 134 PlatformThreadHandle handle; local 136 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); 138 PlatformThread::Join(handle); 181 PlatformThreadHandle handle; local [all...] |
/external/chromium_org/chrome/browser/automation/ |
testing_automation_provider_views.cc | 11 void TestingAutomationProvider::WindowGetViewBounds(int handle, 18 if (window_tracker_->ContainsHandle(handle)) { 19 gfx::NativeWindow window = window_tracker_->GetResource(handle);
|
automation_resource_tracker.h | 47 bool ContainsHandleImpl(int handle); 48 const void* GetResourceImpl(int handle); 82 // Adds the given resource to this tracker, and returns a handle that 84 // being tracked, the handle may be the same as one returned previously. 101 // Returns true if this tracker currently tracks the given handle. 102 bool ContainsHandle(int handle) { 103 return ContainsHandleImpl(handle); 106 // Returns the resource pointer associated with a given handle, or NULL 107 // if that handle is not present in the mapping. 109 T GetResource(int handle) { [all...] |
/external/chromium_org/chrome/browser/prerender/ |
prerender_handle.h | 26 // prerender). Calls on the handle of a prerender that is not running at no-ops. 27 // Destroying a handle before a prerender starts will prevent it from ever 28 // starting. Destroying a handle while a prerendering is running will stop the 36 virtual void OnPrerenderStart(PrerenderHandle* handle) = 0; 39 virtual void OnPrerenderStopLoading(PrerenderHandle* handle) = 0; 42 virtual void OnPrerenderStop(PrerenderHandle* handle) = 0; 49 // Before calling the destructor, the caller must invalidate the handle by 62 // the handle. If the prerender handle is already invalid, this call does
|
/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/renderer/pepper/ |
ppb_broker_impl.h | 41 virtual int32_t GetHandle(int32_t* handle) OVERRIDE; 47 void BrokerConnected(int32_t handle, int32_t result); 56 const IPC::ChannelHandle& handle); 66 // Pipe handle for the plugin instance to use to communicate with the broker.
|
/external/chromium_org/ipc/ |
ipc_channel_handle.h | 21 // handle is provided for convenience. 22 // NOTE: A ChannelHandle with a pipe handle Will NOT be marshalled over IPC. 30 // in both Windows and Posix. When passing a handle to a channel over IPC, 45 explicit ChannelHandle(HANDLE h) : pipe(h) {} 55 // A simple container to automatically initialize pipe handle 57 PipeHandle() : handle(NULL) {} 58 PipeHandle(HANDLE h) : handle(h) {} 59 HANDLE handle; member in struct:IPC::ChannelHandle::PipeHandle [all...] |
/external/chromium_org/third_party/leveldatabase/src/db/ |
table_cache.cc | 28 Cache::Handle* h = reinterpret_cast<Cache::Handle*>(arg2); 46 Cache::Handle** handle) { 51 *handle = cache_->Lookup(key); 52 if (*handle == NULL) { 70 *handle = cache_->Insert(key, tf, 1, &DeleteEntry); 84 Cache::Handle* handle = NULL; local 85 Status s = FindTable(file_number, file_size, &handle); 105 Cache::Handle* handle = NULL; local [all...] |
/external/chromium_org/third_party/libusb/src/libusb/ |
hotplug.c | 58 * a handle that can be passed to \ref libusb_hotplug_deregister_callback(). 74 * on each handle to free up any remaining resources associated with the device. 89 static libusb_device_handle *handle = NULL; 96 rc = libusb_open(dev, &handle); 101 if (handle) { 102 libusb_close(handle); 103 handle = NULL; 114 libusb_hotplug_callback_handle handle; 122 &handle); 133 libusb_hotplug_deregister_callback(handle); 197 struct libusb_device_handle *handle; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
quad-tex.c | 44 void *handle; local 53 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve); 54 info.ctx->bind_vertex_elements_state(info.ctx, handle); 70 void *handle; local 81 handle = graw_parse_vertex_shader(info.ctx, text); 82 info.ctx->bind_vs_state(info.ctx, handle); 87 void *handle; local 98 handle = graw_parse_fragment_shader(info.ctx, text); 99 info.ctx->bind_fs_state(info.ctx, handle); 187 void *handle; local [all...] |
tri.c | 43 void *handle; local 52 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve); 53 info.ctx->bind_vertex_elements_state(info.ctx, handle); 70 void *handle; local 81 handle = graw_parse_vertex_shader(info.ctx, text); 82 info.ctx->bind_vs_state(info.ctx, handle); 88 void *handle; local 96 handle = graw_parse_fragment_shader(info.ctx, text); 97 info.ctx->bind_fs_state(info.ctx, handle); 124 void *handle; local [all...] |
/external/iproute2/tc/ |
f_fw.c | 34 static int fw_parse_opt(struct filter_util *qu, char *handle, int argc, char **argv, struct nlmsghdr *n) 44 if (handle) { 46 if ((slash = strchr(handle, '/')) != NULL) 48 if (get_u32(&t->tcm_handle, handle, 0)) { 49 fprintf(stderr, "Illegal \"handle\"\n"); 54 fprintf(stderr, "Illegal \"handle\" mask\n"); 73 unsigned handle; local 75 if (get_tc_classid(&handle, *argv)) { 79 addattr_l(n, 4096, TCA_FW_CLASSID, &handle, 4); 119 static int fw_print_opt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 handle) [all...] |
/external/kernel-headers/original/linux/ |
genlock.h | 11 void genlock_put_handle(struct genlock_handle *handle); 14 int genlock_wait(struct genlock_handle *handle, u32 timeout); 16 int genlock_lock(struct genlock_handle *handle, int op, int flags,
|
/external/mesa3d/src/gallium/tests/graw/ |
quad-tex.c | 44 void *handle; local 53 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve); 54 info.ctx->bind_vertex_elements_state(info.ctx, handle); 70 void *handle; local 81 handle = graw_parse_vertex_shader(info.ctx, text); 82 info.ctx->bind_vs_state(info.ctx, handle); 87 void *handle; local 98 handle = graw_parse_fragment_shader(info.ctx, text); 99 info.ctx->bind_fs_state(info.ctx, handle); 187 void *handle; local [all...] |
tri.c | 43 void *handle; local 52 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve); 53 info.ctx->bind_vertex_elements_state(info.ctx, handle); 70 void *handle; local 81 handle = graw_parse_vertex_shader(info.ctx, text); 82 info.ctx->bind_vs_state(info.ctx, handle); 88 void *handle; local 96 handle = graw_parse_fragment_shader(info.ctx, text); 97 info.ctx->bind_fs_state(info.ctx, handle); 124 void *handle; local [all...] |
/external/qemu/audio/ |
alsaaudio.c | 109 snd_pcm_t *handle; member in struct:pollhlp 120 snd_pcm_t *handle; member in struct:ALSAVoiceOut 126 snd_pcm_t *handle; member in struct:ALSAVoiceIn 215 hlp->handle = NULL; 222 alsa_logerr (err, "Failed to close PCM handle %p\n", *handlep); 233 static int alsa_recover (snd_pcm_t *handle) 235 int err = FF(snd_pcm_prepare) (handle); 237 alsa_logerr (err, "Failed to prepare handle %p\n", handle); 243 static int alsa_resume (snd_pcm_t *handle) 533 snd_pcm_t *handle; local 882 snd_pcm_t *handle; local 987 snd_pcm_t *handle; local [all...] |
/external/sfntly/cpp/src/test/ |
lock_test.cc | 64 PlatformThreadHandle handle = kNullThreadHandle; local 66 EXPECT_TRUE(PlatformThread::Create(&thread, &handle)); 94 PlatformThread::Join(handle); 132 PlatformThreadHandle handle = kNullThreadHandle; local 134 EXPECT_TRUE(PlatformThread::Create(&thread, &handle)); 136 PlatformThread::Join(handle); 146 PlatformThreadHandle handle = kNullThreadHandle; local 148 EXPECT_TRUE(PlatformThread::Create(&thread, &handle)); 150 PlatformThread::Join(handle); 194 PlatformThreadHandle handle = kNullThreadHandle local [all...] |
/hardware/qcom/msm8960/kernel-headers/linux/ |
ion.h | 47 struct ion_handle *handle; member in struct:ion_allocation_data 51 struct ion_handle *handle; member in struct:ion_fd_data 56 struct ion_handle *handle; member in struct:ion_handle_data
|
/hardware/ti/omap4xxx/ion/ |
linux_ion.h | 41 struct ion_handle *handle; member in struct:ion_allocation_data 45 struct ion_handle *handle; member in struct:ion_fd_data 50 struct ion_handle *handle; member in struct:ion_handle_data
|
/device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/test/ |
mm_jpeg_ionbuf.c | 73 p_buffer->ion_info_fd.handle = p_buffer->alloc.handle; 95 lhandle_data.handle = p_buffer->ion_info_fd.handle; 125 lhandle_data.handle = p_buffer->ion_info_fd.handle;
|
/external/chromium/chrome/browser/automation/ |
automation_resource_tracker.h | 48 bool ContainsHandleImpl(int handle); 49 const void* GetResourceImpl(int handle); 83 // Adds the given resource to this tracker, and returns a handle that 85 // being tracked, the handle may be the same as one returned previously. 102 // Returns true if this tracker currently tracks the given handle. 103 bool ContainsHandle(int handle) { 104 return ContainsHandleImpl(handle); 107 // Returns the resource pointer associated with a given handle, or NULL 108 // if that handle is not present in the mapping. 110 T GetResource(int handle) { [all...] |
/external/chromium/net/socket/ |
transport_client_socket_pool_unittest.cc | 484 ClientSocketHandle handle; local 485 int rv = handle.Init("a", low_params_, LOW, &callback, &pool_, BoundNetLog()); 487 EXPECT_FALSE(handle.is_initialized()); 488 EXPECT_FALSE(handle.socket()); 491 EXPECT_TRUE(handle.is_initialized()); 492 EXPECT_TRUE(handle.socket()); 494 handle.Reset(); 500 ClientSocketHandle handle; local 505 handle.Init("a", dest, kDefaultPriority, &callback, &pool_, 514 ClientSocketHandle handle; local 627 ClientSocketHandle handle; local 634 ClientSocketHandle handle; local 653 ClientSocketHandle handle; local 781 ClientSocketHandle handle; local 847 ClientSocketHandle handle; local 902 ClientSocketHandle handle; local 944 ClientSocketHandle handle; local 989 ClientSocketHandle handle; local 1034 ClientSocketHandle handle; local 1088 ClientSocketHandle handle; local 1132 ClientSocketHandle handle; local 1165 ClientSocketHandle handle; local 1198 ClientSocketHandle handle; local [all...] |
/external/chromium_org/base/process/ |
process_handle_win.cc | 23 bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle) { 24 // We try to limit privileges granted to the handle. If you need this 35 *handle = result; 39 bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle) { 50 *handle = result; 56 ProcessHandle* handle) { 62 *handle = result; 71 // This returns 0 if we have insufficient rights to query the process handle. 82 HANDLE process_token;
|