Searched defs:handle (Results 176 - 200 of 1314) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/thread/symbian/
H A DSDL_sysmutex.cpp51 TInt handle; member in struct:SDL_mutex
56 TInt handle; member in struct:_SDL_mutex
83 mutex->handle = rmutex.Handle();
94 rmutex.SetHandle(mutex->handle);
114 rmutex.SetHandle(mutex->handle);
127 rmutex.SetHandle(mutex->handle);
/external/smack/src/org/apache/qpid/management/common/sasl/
H A DUserPasswordCallbackHandler.java40 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException method in class:UserPasswordCallbackHandler
H A DUsernameHashedPasswordCallbackHandler.java45 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException method in class:UsernameHashedPasswordCallbackHandler
/external/webrtc/src/modules/audio_processing/
H A Dprocessing_component.cc59 void* ProcessingComponent::handle(int index) const { function in class:webrtc::ProcessingComponent
/external/blktrace/btt/
H A Dbno_dump.c70 void bno_dump_add(void *handle, struct io *iop) argument
72 struct bno_dump *bdp = handle;
/external/chromium/base/synchronization/
H A Dwaitable_event.h59 // Releases ownership of the handle from this object.
86 HANDLE handle() const { return handle_; } function in class:base::WaitableEvent
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider_win.cc15 void TestingAutomationProvider::ActivateWindow(int handle) { argument
16 if (window_tracker_->ContainsHandle(handle)) {
17 ::SetActiveWindow(window_tracker_->GetResource(handle));
21 void TestingAutomationProvider::IsWindowMaximized(int handle, argument
26 HWND hwnd = window_tracker_->GetResource(handle);
35 void TestingAutomationProvider::TerminateSession(int handle, bool* success) { argument
38 if (browser_tracker_->ContainsHandle(handle)) {
39 Browser* browser = browser_tracker_->GetResource(handle);
45 void TestingAutomationProvider::GetWindowBounds(int handle, argument
49 HWND hwnd = window_tracker_->GetResource(handle);
58 SetWindowBounds(int handle, const gfx::Rect& bounds, bool* success) argument
71 SetWindowVisible(int handle, bool visible, bool* result) argument
83 GetWindowTitle(int handle, string16* text) argument
[all...]
/external/chromium/chrome/browser/first_run/
H A Dupgrade_util_win.cc48 HANDLE handle = HANDLE(phandle); local
49 WaitForSingleObject(handle, INFINITE);
51 ::GetExitCodeProcess(handle, &exit_code);
52 ::CloseHandle(handle);
99 base::ProcessHandle handle; local
100 if (base::LaunchApp(rename_cmd, true, true, &handle)) {
102 ::GetExitCodeProcess(handle, &exit_code);
103 ::CloseHandle(handle);
/external/chromium/chrome/browser/
H A Dplatform_util_linux.cc39 base::ProcessHandle handle; local
40 if (base::LaunchApp(argv, env, no_files, false, &handle))
41 ProcessWatcher::EnsureProcessGetsReaped(handle);
/external/chromium/chrome/browser/ui/webui/
H A Dfavicon_source.cc27 FaviconService::Handle handle; local
34 handle = favicon_service->GetFavicon(
40 handle = favicon_service->GetFaviconForURL(
47 cancelable_consumer_.SetClientData(favicon_service, handle, request_id);
/external/chromium/chrome/common/
H A Dmulti_process_lock_unittest.cc53 base::ProcessHandle handle = SpawnChild("MultiProcessLockTryFailMain", false); local
54 ASSERT_TRUE(handle);
56 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
63 base::ProcessHandle handle = SpawnChild("MultiProcessLockTrySucceedMain", local
65 ASSERT_TRUE(handle);
67 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
86 "have a path that is to long for linux to handle");
/external/chromium/net/base/
H A Ddnsrr_resolver_unittest.cc33 DnsRRResolver::Handle handle; local
35 handle = resolver.Resolve("test.imperialviolet.org", 13172, 0,
37 ASSERT_TRUE(handle != DnsRRResolver::kInvalidHandle);
48 DnsRRResolver::Handle handle; local
50 handle = resolver.Resolve("google.com", kDNS_TXT, 0,
52 ASSERT_TRUE(handle != DnsRRResolver::kInvalidHandle);
64 DnsRRResolver::Handle handle; local
66 handle = resolver.Resolve("www.testing.notatld", kDNS_TESTING, 0,
68 ASSERT_TRUE(handle != DnsRRResolver::kInvalidHandle);
77 handle
[all...]
H A Dnetwork_change_notifier_win.cc164 HANDLE handle = NULL; local
165 DWORD ret = NotifyAddrChange(&handle, &addr_overlapped_);
/external/chromium/webkit/glue/
H A Dwebsocketstreamhandle_delegate.h21 virtual void WillOpenStream(WebKit::WebSocketStreamHandle* handle, argument
23 virtual void WillSendData(WebKit::WebSocketStreamHandle* handle, argument
26 virtual void DidOpenStream(WebKit::WebSocketStreamHandle* handle, argument
28 virtual void DidSendData(WebKit::WebSocketStreamHandle* handle, argument
30 virtual void DidReceiveData(WebKit::WebSocketStreamHandle* handle, argument
/external/chromium_org/base/
H A Dsync_socket_nacl.cc62 CancelableSyncSocket::CancelableSyncSocket(Handle handle) argument
63 : SyncSocket(handle) {
/external/chromium_org/base/synchronization/
H A Dlock_unittest.cc54 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...]
H A Dwaitable_event.h58 // Releases ownership of the handle from this object.
84 HANDLE handle() const { return handle_; } function in class:base::WaitableEvent
/external/chromium_org/base/threading/
H A Dthread_id_name_manager.cc43 void ThreadIdNameManager::RegisterThread(PlatformThreadHandle::Handle handle, argument
46 thread_id_to_handle_[id] = handle;
47 thread_handle_to_interned_name_[handle] =
93 void ThreadIdNameManager::RemoveName(PlatformThreadHandle::Handle handle, argument
97 thread_handle_to_interned_name_.find(handle);
106 // mapping points to the provided |handle| before removal.
107 if (id_to_handle_iter->second != handle)
/external/chromium_org/base/win/
H A Dscoped_handle.cc33 void VerifierTraits::StartTracking(HANDLE handle, const void* owner, argument
41 std::pair<HANDLE, Info> item(handle, handle_info);
51 void VerifierTraits::StopTracking(HANDLE handle, const void* owner, argument
54 HandleMap::iterator i = g_handle_map.Get().find(handle);
H A Dscoped_hdc.h29 // GDI handle exhaustion. In this case Chrome is going to behave badly no
55 static bool CloseHandle(HDC handle) { argument
56 return ::DeleteDC(handle) != FALSE;
59 static bool IsHandleValid(HDC handle) { argument
60 return handle != NULL;
/external/chromium_org/chrome/browser/
H A Dplatform_util_linux.cc39 base::ProcessHandle handle; local
40 if (base::LaunchProcess(argv, options, &handle))
41 base::EnsureProcessGetsReaped(handle);
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_link_manager.h95 // Initially NULL, |handle| is set once we start this prerender. It is owned
97 PrerenderHandle* handle; member in struct:prerender::PrerenderLinkManager::LinkPrerender
138 PrerenderHandle* handle) OVERRIDE;
/external/chromium_org/chrome/common/
H A Dmulti_process_lock_unittest.cc54 base::ProcessHandle handle = SpawnChild("MultiProcessLockTryFailMain", false); local
55 ASSERT_TRUE(handle);
57 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
64 base::ProcessHandle handle = SpawnChild("MultiProcessLockTrySucceedMain", local
66 ASSERT_TRUE(handle);
68 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
90 "Mac OS X when we have a path that is too long for Mac OS X to handle");
94 "when we have a path that is too long for the system to handle");
98 "have a path that is too long for Windows to handle "
/external/chromium_org/chrome/renderer/extensions/
H A Dscoped_persistent.h13 // A v8::Persistent handle to a V8 value which destroys and clears the
14 // underlying handle on destruction.
21 explicit ScopedPersistent(v8::Handle<T> handle) { argument
22 reset(handle);
29 void reset(v8::Handle<T> handle) { argument
30 if (!handle.IsEmpty())
31 handle_.Reset(GetIsolate(handle), handle); local
/external/chromium_org/chrome/test/automation/
H A Dautomation_handle_tracker.h30 AutomationHandle handle);
41 // Returns the handle that the app has generated to refer to this resource.
42 AutomationHandle handle() { return handle_; } function in class:AutomationResourceProxy
69 // AutomationResourceProxy objects can be generated for the same handle
71 // proxy objects then need to be invalidated, and (3) when a handle is no
73 // discard the handle.
83 // handle on the app side if this was the last proxy object that was using
84 // that handle. This is a no-op if the proxy object is not currently
88 // Marks all proxy objects related to a given handle invalid. This is
90 // that no further operations can be completed using the handle tha
[all...]

Completed in 1091 milliseconds

1234567891011>>