Searched defs:handle (Results 26 - 50 of 1271) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dsync_socket.h32 explicit SyncSocket(Handle handle) : handle_(handle) { } argument
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
/external/chromium/chrome/browser/webdata/
H A Dweb_data_service_test_util.h20 virtual void OnWebDataServiceRequestDone(WebDataService::Handle handle, argument
23 handle_ = handle;
31 WebDataService::Handle handle() { return handle_; } function in class:AutofillWebDataServiceConsumer
/external/chromium/net/base/
H A Dcrypto_module_nss.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
17 return new CryptoModule(handle);
20 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
H A Dcrypto_module_openssl.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.h46 HWND handle() const { return wnd_; } function in class:talk_base::Win32Window
/external/chromium_org/base/win/
H A Dscoped_handle_unittest.cc13 base::win::ScopedHandle handle; local
18 base::win::ScopedHandle::Receiver a = handle.Receive();
23 EXPECT_EQ(handle.Get(), reinterpret_cast<HANDLE>(value));
24 HANDLE to_discard = handle.Take();
28 CreateHandle(value, handle.Receive());
29 EXPECT_EQ(handle.Get(), reinterpret_cast<HANDLE>(value));
30 to_discard = handle.Take();
/external/chromium_org/chrome/browser/automation/
H A Dtesting_automation_provider_win.cc16 void TestingAutomationProvider::TerminateSession(int handle, bool* success) { argument
19 if (browser_tracker_->ContainsHandle(handle)) {
20 Browser* browser = browser_tracker_->GetResource(handle);
26 void TestingAutomationProvider::SetWindowBounds(int handle, argument
30 if (window_tracker_->ContainsHandle(handle)) {
31 HWND hwnd = window_tracker_->GetResource(handle);
/external/chromium_org/chrome/renderer/extensions/
H A Dunsafe_persistent.h21 explicit UnsafePersistent(v8::Persistent<T>* handle) { argument
22 value_ = handle->ClearAndLeak();
25 UnsafePersistent(v8::Isolate* isolate, const v8::Handle<T>& handle) { argument
26 v8::Persistent<T> persistent(isolate, handle);
33 v8::Persistent<T> handle(value_);
34 handle.Dispose();
/external/chromium_org/chrome/test/automation/
H A Dbrowser_proxy.h33 int handle)
34 : AutomationResourceProxy(tracker, sender, handle) {}
31 BrowserProxy(AutomationMessageSender* sender, AutomationHandleTracker* tracker, int handle) argument
H A Dwindow_proxy.h33 int handle)
34 : AutomationResourceProxy(tracker, sender, handle) {}
31 WindowProxy(AutomationMessageSender* sender, AutomationHandleTracker* tracker, int handle) argument
/external/chromium_org/content/browser/device_orientation/
H A Ddevice_motion_service.cc60 base::ProcessHandle handle) {
62 return provider_->GetSharedMemoryHandleForProcess(handle);
59 GetSharedMemoryHandleForProcess( base::ProcessHandle handle) argument
/external/chromium_org/content/common/gpu/
H A Dimage_transport_surface_android.cc18 const gfx::GLSurfaceHandle& handle) {
20 DCHECK_EQ(handle.transport_type, gfx::NATIVE_DIRECT);
15 CreateNativeSurface( GpuChannelManager* manager, GpuCommandBufferStub* stub, const gfx::GLSurfaceHandle& handle) argument
/external/chromium_org/content/common/
H A Dsandbox_util.cc16 base::PlatformFile handle,
24 if (!content::BrokerDuplicateHandle(handle, target_process_id, &out_handle,
31 // When we're not closing the source, we need to duplicate the handle and take
33 // generate IPC messages, and the handle must remain valid until it's sent to
35 // close the source handle before the message is sent, creating a race
37 int fd = should_close_source ? handle : ::dup(handle);
15 BrokerGetFileHandleForProcess( base::PlatformFile handle, base::ProcessId target_process_id, bool should_close_source) argument
/external/chromium_org/content/renderer/pepper/
H A Dpepper_proxy_channel_delegate_impl.cc28 base::PlatformFile handle,
31 return BrokerGetFileHandleForProcess(handle, remote_pid,
27 ShareHandleWithRemote( base::PlatformFile handle, base::ProcessId remote_pid, bool should_close_source) argument
/external/chromium_org/ipc/
H A Dipc_platform_file.cc13 PlatformFileForTransit GetFileHandleForProcess(base::PlatformFile handle, argument
21 if (handle == INVALID_HANDLE_VALUE ||
23 handle,
34 // When we're not closing the source, we need to duplicate the handle and take
36 // generate IPC messages, and the handle must remain valid until it's sent to
38 // close the source handle before the message is sent, creating a race
40 int fd = close_source_handle ? handle : ::dup(handle);
/external/chromium_org/media/base/
H A Dbitstream_buffer.h17 BitstreamBuffer(int32 id, base::SharedMemoryHandle handle, size_t size) argument
19 handle_(handle),
24 base::SharedMemoryHandle handle() const { return handle_; } function in class:media::BitstreamBuffer
/external/chromium_org/net/base/
H A Dcrypto_module_nss.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
17 return new CryptoModule(handle);
20 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
H A Dcrypto_module_openssl.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
/external/chromium_org/ppapi/cpp/private/
H A Dpass_file_handle.cc19 PassFileHandle::PassFileHandle(PP_FileHandle handle) argument
20 : handle_(handle) {
23 PassFileHandle::PassFileHandle(PassFileHandle& handle) argument
24 : handle_(handle.Release()) {
/external/chromium_org/ppapi/thunk/
H A Dppb_file_io_private_thunk.cc23 PP_FileHandle* handle,
29 handle,
22 RequestOSFileHandle(PP_Resource file_io, PP_FileHandle* handle, struct PP_CompletionCallback callback) argument
/external/chromium_org/remoting/base/
H A Dscoped_sc_handle_win.h18 // Closes the handle.
19 static bool CloseHandle(SC_HANDLE handle) { argument
20 return ::CloseServiceHandle(handle) != FALSE;
23 // Returns true if the handle value is valid.
24 static bool IsHandleValid(SC_HANDLE handle) { argument
25 return handle != NULL;
28 // Returns NULL handle value.
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A DHandleAllocator.cpp37 GLuint handle = mFreeValues.back(); local
39 return handle;
44 void HandleAllocator::release(GLuint handle) argument
46 if (handle == mNextValue - 1)
57 if (handle >= mBaseValue)
59 mFreeValues.push_back(handle);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32window.h46 HWND handle() const { return wnd_; } function in class:talk_base::Win32Window
/external/chromium_org/third_party/lzma_sdk/
H A D7zFile.h26 HANDLE handle; member in struct:__anon11745
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_resource.c49 struct winsys_handle *handle)
54 return nv30_miptree_from_handle(pscreen, tmpl, handle);
47 nv30_resource_from_handle(struct pipe_screen *pscreen, const struct pipe_resource *tmpl, struct winsys_handle *handle) argument

Completed in 523 milliseconds

1234567891011>>