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

1 2 3

  /external/chromium/chrome/browser/chromeos/login/
issue_response_handler.cc 23 URLFetcher* IssueResponseHandler::Handle(
client_login_response_handler.cc 27 URLFetcher* ClientLoginResponseHandler::Handle(
  /external/webkit/Source/WebKit2/Platform/gtk/
SharedMemoryGtk.cpp 34 SharedMemory::Handle::Handle()
39 SharedMemory::Handle::~Handle()
44 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
49 bool SharedMemory::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
61 PassRefPtr<SharedMemory> SharedMemory::create(const Handle& handle, Protection protection
    [all...]
  /external/chromium/base/
sync_socket.h 26 typedef HANDLE Handle;
28 typedef int Handle;
31 // Creates a SyncSocket from a Handle. Used in transport.
32 explicit SyncSocket(Handle handle) : handle_(handle) { }
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
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WrappedResourceRequest.h 70 class Handle : public WebURLRequestPrivate {
75 Handle m_handle;
WrappedResourceResponse.h 70 class Handle : public WebURLResponsePrivate {
75 Handle m_handle;
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 40 SharedMemory::Handle::Handle()
46 SharedMemory::Handle::~Handle()
52 bool SharedMemory::Handle::isNull() const
57 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
64 bool SharedMemory::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
66 ASSERT(!handle.m_port)
    [all...]
  /external/webkit/Source/WebKit2/Platform/unix/
SharedMemoryUnix.cpp 52 SharedMemory::Handle::Handle()
58 SharedMemory::Handle::~Handle()
64 bool SharedMemory::Handle::isNull() const
69 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
76 bool SharedMemory::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
78 ASSERT_ARG(handle, !handle.m_size)
    [all...]
  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 35 SharedMemory::Handle::Handle()
41 SharedMemory::Handle::~Handle()
49 bool SharedMemory::Handle::isNull() const
54 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
58 // Hand off ownership of our HANDLE to the receiving process. It will close it for us.
64 // Send along our PID so that the receiving process can duplicate the HANDLE for its own use.
68 static bool getDuplicatedHandle(HANDLE sourceHandle, DWORD sourcePID, HANDLE& duplicatedHandle
115 HANDLE handle = ::CreateFileMappingW(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, size, 0); local
    [all...]
  /external/webkit/Source/WebKit2/Shared/
SandboxExtension.h 54 class Handle {
55 WTF_MAKE_NONCOPYABLE(Handle);
58 Handle();
59 ~Handle();
62 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
71 static PassRefPtr<SandboxExtension> create(const Handle&);
72 static void createHandle(const String& path, Type type, Handle&);
73 static String createHandleForTemporaryFile(const String& prefix, Type type, Handle&);
81 explicit SandboxExtension(const Handle&);
89 inline SandboxExtension::Handle::Handle() {
    [all...]
ShareableBitmap.cpp 37 ShareableBitmap::Handle::Handle()
42 void ShareableBitmap::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
49 bool ShareableBitmap::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
51 if (!decoder->decode(handle.m_handle))
53 if (!decoder->decode(handle.m_size))
55 if (!decoder->decode(handle.m_flags))
92 PassRefPtr<ShareableBitmap> ShareableBitmap::create(const Handle& handle
    [all...]
ShareableBitmap.h 53 class Handle {
54 WTF_MAKE_NONCOPYABLE(Handle);
56 Handle();
61 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
66 mutable SharedMemory::Handle m_handle;
80 // Create a shareable bitmap from a handle.
81 static PassRefPtr<ShareableBitmap> create(const Handle&);
83 // Create a handle.
84 bool createHandle(Handle&);
  /external/chromium/chrome/browser/
icon_manager.h 73 typedef CancelableRequestProvider::Handle Handle;
74 typedef Callback2<Handle, gfx::Image*>::Type IconRequestCallback;
82 Handle LoadIcon(const FilePath& file_name,
  /external/chromium/chrome/browser/profiles/
off_the_record_profile_io_data.h 20 // OffTheRecordProfile owns a OffTheRecordProfileIOData::Handle, which holds a
34 class Handle {
36 explicit Handle(Profile* profile);
37 ~Handle();
78 DISALLOW_COPY_AND_ASSIGN(Handle);
off_the_record_profile_io_data.cc 23 OffTheRecordProfileIOData::Handle::Handle(Profile* profile)
31 OffTheRecordProfileIOData::Handle::~Handle() {
50 OffTheRecordProfileIOData::Handle::GetResourceContext() const {
57 OffTheRecordProfileIOData::Handle::GetMainRequestContextGetter() const {
72 OffTheRecordProfileIOData::Handle::GetExtensionsRequestContextGetter() const {
84 OffTheRecordProfileIOData::Handle::GetIsolatedAppRequestContextGetter(
104 void OffTheRecordProfileIOData::Handle::LazyInitialize() const {
profile_impl_io_data.h 23 class Handle {
25 explicit Handle(Profile* profile);
26 ~Handle();
32 // Init() must be called before ~Handle(). It records all the necessary
84 DISALLOW_COPY_AND_ASSIGN(Handle);
  /external/webkit/Source/WebKit2/Platform/
SharedMemory.h 52 class Handle {
53 WTF_MAKE_NONCOPYABLE(Handle);
55 Handle();
56 ~Handle();
61 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
72 mutable HANDLE m_handle;
82 // Create a shared memory object from the given handle and the requested protection. Will return 0 on failure.
83 static PassRefPtr<SharedMemory> create(const Handle&, Protection);
86 static PassRefPtr<SharedMemory> adopt(HANDLE, size_t, Protection);
91 bool createHandle(Handle&, Protection)
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
ShareableSurface.h 47 class Handle {
48 WTF_MAKE_NONCOPYABLE(Handle);
51 Handle();
52 ~Handle();
55 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
66 // Create a shareable surface from a handle. Returns 0 on failure.
67 static PassRefPtr<ShareableSurface> create(CGLContextObj, const Handle&);
71 bool createHandle(Handle&);
ShareableSurface.cpp 50 ShareableSurface::Handle::Handle()
55 ShareableSurface::Handle::~Handle()
61 void ShareableSurface::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
67 bool ShareableSurface::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
69 ASSERT_ARG(handle, handle.m_port == MACH_PORT_NULL)
    [all...]
  /external/chromium/base/win/
registry.h 88 HANDLE watch_event() const { return watch_event_; }
89 HKEY Handle() const { return key_; }
93 HANDLE watch_event_;
  /external/chromium/net/base/
dnsrr_resolver.h 72 typedef intptr_t Handle;
96 // This returns a handle value which can be passed to |CancelResolve|. If
99 Handle Resolve(const std::string& name, uint16 rrtype,
106 void CancelResolve(Handle handle);
  /external/v8/src/
handles-inl.h 49 Handle<T>::Handle(T* obj) {
56 Handle<T>::Handle(T* obj, Isolate* isolate) {
63 inline T* Handle<T>::operator*() const {
113 Handle<T> HandleScope::CloseAndEscape(Handle<T> handle_value) {
119 // Allocate one handle in the parent scope.
121 Handle<T> result(CreateHandle<T>(value, isolate_));
140 // handle, and return the result
    [all...]
handles.h 38 // A Handle provides a reference to an object that survives relocation by
41 // When a handle is created for an object a cell is allocated in the heap.
44 class Handle {
46 INLINE(explicit Handle(T** location)) { location_ = location; }
47 INLINE(explicit Handle(T* obj));
48 INLINE(Handle(T* obj, Isolate* isolate));
50 INLINE(Handle()) : location_(NULL) {}
53 // Ex. Handle<JSFunction> can be passed when Handle<Object> is expected.
54 template <class S> Handle(Handle<S> handle)
    [all...]
  /external/webrtc/src/modules/audio_processing/
high_pass_filter_impl.cc 106 typedef FilterState Handle;
124 Handle* my_handle = static_cast<Handle*>(handle(i));
157 int HighPassFilterImpl::DestroyHandle(void* handle) const {
158 delete static_cast<Handle*>(handle);
162 int HighPassFilterImpl::InitializeHandle(void* handle) const {
163 return InitializeFilter(static_cast<Handle*>(handle),
    [all...]
noise_suppression_impl.cc 28 typedef NsHandle Handle;
30 typedef NsxHandle Handle;
67 Handle* my_handle = static_cast<Handle*>(handle(i));
69 err = WebRtcNs_Process(static_cast<Handle*>(handle(i)),
75 err = WebRtcNsx_Process(static_cast<Handle*>(handle(i)),
128 Handle* handle = NULL local
    [all...]

Completed in 5428 milliseconds

1 2 3