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

1 2 3 4

  /external/chromium/chrome/browser/chromeos/login/
issue_response_handler.cc 23 URLFetcher* IssueResponseHandler::Handle(
client_login_response_handler.cc 27 URLFetcher* ClientLoginResponseHandler::Handle(
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
cache.h 40 // Opaque handle to an entry stored in the cache.
41 struct Handle { };
46 // Returns a handle that corresponds to the mapping. The caller
47 // must call this->Release(handle) when the returned mapping is no
52 virtual Handle* Insert(const Slice& key, void* value, size_t charge,
57 // Else return a handle that corresponds to the mapping. The caller
58 // must call this->Release(handle) when the returned mapping is no
60 virtual Handle* Lookup(const Slice& key) = 0;
63 // REQUIRES: handle must not have been released yet.
64 // REQUIRES: handle must have been returned by a method on *this
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
callback_interface.h 49 static PassOwnPtr<{{v8_class}}> create(v8::Handle<v8::Function> callback, ExecutionContext* context)
61 {{v8_class}}(v8::Handle<v8::Function>, ExecutionContext*);
  /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/chromium_org/components/webdata/common/
web_data_service_base.h 29 // All requests return an opaque handle of the following type.
30 typedef int Handle;
32 // Users of this class may provide a callback to handle errors
56 virtual void CancelRequest(Handle h);
  /external/chromium_org/remoting/base/
scoped_sc_handle_win.h 16 typedef SC_HANDLE Handle;
18 // Closes the handle.
19 static bool CloseHandle(SC_HANDLE handle) {
20 return ::CloseServiceHandle(handle) != FALSE;
23 // Returns true if the handle value is valid.
24 static bool IsHandleValid(SC_HANDLE handle) {
25 return handle != NULL;
28 // Returns NULL handle value.
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WrappedResourceRequest.h 70 class Handle : public WebURLRequestPrivate {
75 Handle m_handle;
WrappedResourceResponse.h 70 class Handle : public WebURLResponsePrivate {
75 Handle m_handle;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglmode.h 48 EGLModeMESA Handle; /* the public/opaque handle which names this mode */
eglscreen.h 57 EGLScreenMESA Handle; /* The public/opaque handle which names this object */
83 * Return the handle of a linked screen.
88 return (screen) ? screen->Handle : (EGLScreenMESA) 0;
  /external/mesa3d/src/egl/main/
eglmode.h 48 EGLModeMESA Handle; /* the public/opaque handle which names this mode */
eglscreen.h 57 EGLScreenMESA Handle; /* The public/opaque handle which names this object */
83 * Return the handle of a linked screen.
88 return (screen) ? screen->Handle : (EGLScreenMESA) 0;
  /external/chromium_org/base/win/
scoped_handle.h 31 // - IsValid() method can tolerate multiple invalid handle values such as NULL
33 // - Receive() method allows to receive a handle value from a function that
34 // takes a raw handle pointer only.
40 typedef typename Traits::Handle Handle;
44 explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle()) {
45 Set(handle);
69 void Set(Handle handle) {
    [all...]
scoped_hdc.h 29 // GDI handle exhaustion. In this case Chrome is going to behave badly no
53 typedef HDC Handle;
55 static bool CloseHandle(HDC handle) {
56 return ::DeleteDC(handle) != FALSE;
59 static bool IsHandleValid(HDC handle) {
60 return handle != NULL;
  /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 {
  /external/chromium_org/base/
sync_socket.h 28 typedef HANDLE Handle;
30 typedef int Handle;
32 static const Handle kInvalidHandle;
36 // Creates a SyncSocket from a Handle. Used in transport.
37 explicit SyncSocket(Handle handle) : handle_(handle) {}
41 // |socket_a| and |socket_b| must not hold a valid handle. Upon successful
49 // Note it is not safe to send messages from the same socket handle b
77 Handle handle() const { return handle_; } function in class:base::SyncSocket
    [all...]
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_io_data.h 27 // OffTheRecordProfile owns a OffTheRecordProfileIOData::Handle, which holds a
41 class Handle {
43 explicit Handle(Profile* profile);
44 ~Handle();
96 DISALLOW_COPY_AND_ASSIGN(Handle);
off_the_record_profile_io_data.cc 42 OffTheRecordProfileIOData::Handle::Handle(Profile* profile)
50 OffTheRecordProfileIOData::Handle::~Handle() {
56 OffTheRecordProfileIOData::Handle::GetResourceContext() const {
63 OffTheRecordProfileIOData::Handle::GetResourceContextNoInit() const {
72 OffTheRecordProfileIOData::Handle::CreateMainRequestContextGetter(
88 OffTheRecordProfileIOData::Handle::GetExtensionsRequestContextGetter() const {
99 OffTheRecordProfileIOData::Handle::GetIsolatedAppRequestContextGetter(
115 OffTheRecordProfileIOData::Handle::CreateIsolatedAppRequestContextGetter
    [all...]
  /external/chromium_org/gin/
handle.h 12 // You can use gin::Handle on the stack to retain a gin::Wrappable object.
17 class Handle {
19 Handle() : object_(NULL) {}
21 Handle(v8::Handle<v8::Value> wrapper, T* object)
34 v8::Handle<v8::Value> ToV8() const { return wrapper_; }
38 v8::Handle<v8::Value> wrapper_;
43 struct Converter<gin::Handle<T> > {
44 static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate,
45 const gin::Handle<T>& val)
    [all...]
  /external/chromium_org/base/threading/
platform_thread.h 35 typedef void* Handle;
37 typedef pthread_t Handle;
45 explicit PlatformThreadHandle(Handle handle)
46 : handle_(handle),
50 PlatformThreadHandle(Handle handle,
52 : handle_(handle),
64 Handle platform_handle() {
71 Handle handle_
    [all...]
  /external/chromium_org/net/base/
prioritized_dispatcher.h 62 // A handle to the enqueued job. The handle becomes invalid when the job is
64 typedef PriorityQueue<Job*>::Pointer Handle;
76 // started immediately. Returns handle to the job or null-handle if the job is
79 Handle Add(Job* job, Priority priority);
83 Handle AddAtHead(Job* job, Priority priority);
85 // Removes the job with |handle| from the queue. Invalidates |handle|.
86 // Note: a Handle is valid iff the job is in the queue, i.e. has not Started
    [all...]
  /external/chromium_org/net/dns/
host_cache.cc 101 void HostCache::EvictionHandler::Handle(

Completed in 558 milliseconds

1 2 3 4