/external/chromium_org/printing/backend/ |
win_helper.h | 26 typedef HANDLE Handle; 28 static bool CloseHandle(HANDLE handle) { 29 return ::ClosePrinter(handle) != FALSE; 32 static bool IsHandleValid(HANDLE handle) { 33 return handle != NULL; 36 static HANDLE NullHandle() { 49 HANDLE temp_handle [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/chrome/browser/profiles/ |
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);
|
profile_impl_io_data.cc | 24 ProfileImplIOData::Handle::Handle(Profile* profile) 32 ProfileImplIOData::Handle::~Handle() { 52 void ProfileImplIOData::Handle::Init(const FilePath& cookie_path, 77 ProfileImplIOData::Handle::GetResourceContext() const { 84 ProfileImplIOData::Handle::GetMainRequestContextGetter() const { 96 ProfileImplIOData::Handle::GetMediaRequestContextGetter() const { 108 ProfileImplIOData::Handle::GetExtensionsRequestContextGetter() const { 120 ProfileImplIOData::Handle::GetIsolatedAppRequestContextGetter [all...] |
/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/chromium_org/base/win/ |
registry.h | 50 // Replaces the handle of the registry key and takes ownership of the handle. 131 HANDLE watch_event() const { return watch_event_; } 132 HKEY Handle() const { return key_; } 136 HANDLE watch_event_;
|
/external/chromium_org/chrome/app/ |
signature_validator_win.cc | 50 typedef HCERTSTORE Handle; 52 // Closes the handle. 53 static bool CloseHandle(HCERTSTORE handle) { 54 return CertCloseStore(handle, 0) != FALSE; 57 // Returns true if the handle value is valid. 58 static bool IsHandleValid(HCERTSTORE handle) { 59 return handle != NULL; 62 // Returns NULL handle value. 63 static HANDLE NullHandle() {
|
/external/chromium_org/ui/surface/ |
transport_dib.h | 33 // Two typedefs are defined. A Handle is the type which can be sent over 38 typedef HANDLE Handle; 41 // 1) Process A creates a transport DIB with HANDLE=1 and sends to B. 44 // is also assigned HANDLE=1. 45 // 4) Process A sends the Handle to B, but B incorrectly believes that it 49 : handle(NULL), 53 HandleAndSequenceNum(HANDLE h, uint32 seq_num) 54 : handle(h), 59 return other.handle == handle && other.sequence_num == sequence_num 69 HANDLE handle; member in struct:TransportDIB::HandleAndSequenceNum [all...] |
/external/chromium_org/v8/src/ |
handles-inl.h | 42 Handle<T>::Handle(T* obj) { 49 Handle<T>::Handle(T* obj, Isolate* isolate) { 56 inline bool Handle<T>::is_identical_to(const Handle<T> other) const { 68 inline T* Handle<T>::operator*() const { 75 inline T** Handle<T>::location() const { 84 bool Handle<T>::IsDereferenceAllowed(DereferenceCheckMode mode) const { 90 Object** handle = reinterpret_cast<Object**>(location_) local [all...] |
handles.h | 39 // A Handle provides a reference to an object that survives relocation by 42 // When a handle is created for an object a cell is allocated in the heap. 45 class Handle { 47 INLINE(explicit Handle(T** location)) { location_ = location; } 48 INLINE(explicit Handle(T* obj)); 49 INLINE(Handle(T* obj, Isolate* isolate)); 51 INLINE(Handle()) : location_(NULL) {} 54 // Ex. Handle<JSFunction> can be passed when Handle<Object> is expected. 55 template <class S> Handle(Handle<S> handle) 104 inline Handle<T> handle(T* t, Isolate* isolate) { function in namespace:v8::internal 111 inline Handle<T> handle(T* t) { function in namespace:v8::internal [all...] |
/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...] |
voice_detection_impl.cc | 23 typedef VadInst Handle; 77 int vad_ret = WebRtcVad_Process(static_cast<Handle*>(handle(0)), 170 Handle* handle = NULL; local 171 if (WebRtcVad_Create(&handle) != apm_->kNoError) { 172 handle = NULL; 174 assert(handle != NULL); 177 return handle; 180 int VoiceDetectionImpl::DestroyHandle(void* handle) const [all...] |
echo_control_mobile_impl.cc | 24 typedef void Handle; 94 Handle* my_handle = static_cast<Handle*>(handle(handle_index)); 137 Handle* my_handle = static_cast<Handle*>(handle(handle_index)); 230 Handle* my_handle = static_cast<Handle*>(handle(0)) 261 Handle* handle = NULL; local [all...] |
/external/chromium_org/mojo/public/system/ |
core_cpp.h | 20 // Scoper for the actual handle types defined further below. It's move-only, 28 explicit ScopedHandleBase(HandleType handle) : handle_(handle) {} 50 void reset(HandleType handle = HandleType()) { 52 handle_ = handle; 71 inline ScopedHandleBase<HandleType> MakeScopedHandle(HandleType handle) { 72 return ScopedHandleBase<HandleType>(handle); 75 // Handle ---------------------------------------------------------------------- 80 class Handle { 82 Handle() : value_(MOJO_HANDLE_INVALID) { [all...] |
/external/chromium_org/chrome/browser/profiles/ |
profile_impl_io_data.h | 32 class Handle { 34 explicit Handle(Profile* profile); 35 ~Handle(); 37 // Init() must be called before ~Handle(). It records most of the 53 // circular relationship between Profile, ProfileIOData::Handle, and the 121 DISALLOW_COPY_AND_ASSIGN(Handle);
|
profile_impl_io_data.cc | 124 ProfileImplIOData::Handle::Handle(Profile* profile) 132 ProfileImplIOData::Handle::~Handle() { 153 void ProfileImplIOData::Handle::Init( 197 ProfileImplIOData::Handle::GetResourceContext() const { 204 ProfileImplIOData::Handle::GetResourceContextNoInit() const { 213 ProfileImplIOData::Handle::CreateMainRequestContextGetter( 237 ProfileImplIOData::Handle::GetMediaRequestContextGetter() const { 248 ProfileImplIOData::Handle::GetExtensionsRequestContextGetter() const [all...] |
/external/chromium_org/chrome/test/chromedriver/server/ |
http_handler.cc | 530 void HttpHandler::Handle(const net::HttpServerRequestInfo& request,
|
/external/chromium_org/cloud_print/service/win/ |
service_controller.cc | 31 typedef SC_HANDLE Handle; 33 // Closes the handle. 34 static bool CloseHandle(Handle handle) { 35 return ::CloseServiceHandle(handle) != FALSE; 38 static bool IsHandleValid(Handle handle) { 39 return handle != NULL; 42 static Handle NullHandle() {
|
/external/chromium_org/net/base/ |
expiring_cache.h | 22 void Handle(const KeyType& key, 201 eviction_handler_.Handle(it->first, it->second.first, it->second.second,
|
net_util_win.cc | 31 DWORD, VOID*, DWORD*, HANDLE*); 33 HANDLE, VOID*, WLAN_INTERFACE_INFO_LIST**); 35 HANDLE, const GUID*, WLAN_INTF_OPCODE, VOID*, DWORD*, VOID**, 38 typedef DWORD (WINAPI *WlanCloseHandleFunc)(HANDLE, VOID*); 65 DWORD OpenHandle(DWORD client_version, DWORD* cur_version, T* handle) const { 66 HANDLE temp_handle; 71 handle->Set(temp_handle); 221 typedef HANDLE Handle; 223 static bool CloseHandle(HANDLE handle) [all...] |
/external/llvm/lib/Support/Windows/ |
Windows.h | 49 handle_type Handle; 55 : Handle(HandleTraits::GetInvalid()) {} 58 : Handle(h) {} 61 if (HandleTraits::IsValid(Handle)) 62 HandleTraits::Close(Handle); 66 handle_type t = Handle; 67 Handle = HandleTraits::GetInvalid(); 72 if (HandleTraits::IsValid(Handle)) 73 HandleTraits::Close(Handle); 74 Handle = h [all...] |
/external/chromium_org/chrome/browser/common/ |
cancelable_request.h | 25 // // StartRequest() returns a Handle which may be retained for use with 44 // Handle StartRequest(int some_input1, int some_input2, 57 // // The handle will have been set by AddRequest. 58 // return request->handle(); 121 typedef int Handle; 128 // handle must be for a valid pending (not yet complete or cancelled) request. 129 void CancelRequest(Handle handle); 136 // the consumer is required. The handle to the new request is returned. 137 Handle AddRequest(CancelableRequestBase* request 282 CancelableRequestProvider::Handle handle; member in struct:CancelableRequestConsumerTSimple::PendingRequest 548 CancelableRequestProvider::Handle handle() const { function in class:CancelableRequestBase [all...] |