handle_            26 base/files/file_path_watcher_win.cc       : handle_(INVALID_HANDLE_VALUE),
handle_            70 base/files/file_path_watcher_win.cc   HANDLE handle_;
handle_           103 base/files/file_path_watcher_win.cc   watcher_.StartWatching(handle_, this);
handle_           128 base/files/file_path_watcher_win.cc   if (handle_ != INVALID_HANDLE_VALUE)
handle_           142 base/files/file_path_watcher_win.cc   DCHECK(object == handle_);
handle_           185 base/files/file_path_watcher_win.cc   if (handle_ != INVALID_HANDLE_VALUE)
handle_           186 base/files/file_path_watcher_win.cc     watcher_.StartWatching(handle_, this);
handle_           230 base/files/file_path_watcher_win.cc   if (handle_ != INVALID_HANDLE_VALUE)
handle_           245 base/files/file_path_watcher_win.cc     if (!SetupWatchHandle(watched_path, recursive_watch_, &handle_))
handle_           249 base/files/file_path_watcher_win.cc     if (handle_ != INVALID_HANDLE_VALUE)
handle_           273 base/files/file_path_watcher_win.cc     FindCloseChangeNotification(handle_);
handle_           274 base/files/file_path_watcher_win.cc     handle_ = temp_handle;
handle_           282 base/files/file_path_watcher_win.cc   FindCloseChangeNotification(handle_);
handle_           283 base/files/file_path_watcher_win.cc   handle_ = INVALID_HANDLE_VALUE;
handle_            15 base/memory/scoped_handle.h       : handle_(NULL) { }
handle_            18 base/memory/scoped_handle.h       : handle_(handle) { }
handle_            25 base/memory/scoped_handle.h     if (handle_) {
handle_            26 base/memory/scoped_handle.h       fclose(handle_);
handle_            27 base/memory/scoped_handle.h       handle_ = NULL;
handle_            31 base/memory/scoped_handle.h   FILE* get() const { return handle_; }
handle_            34 base/memory/scoped_handle.h     FILE* temp = handle_;
handle_            35 base/memory/scoped_handle.h     handle_ = NULL;
handle_            41 base/memory/scoped_handle.h     handle_ = newhandle;
handle_            45 base/memory/scoped_handle.h   FILE* handle_;
handle_            16 base/memory/scoped_open_process.h   ScopedOpenProcess() : handle_(kNullProcessHandle) {
handle_            28 base/memory/scoped_open_process.h     return OpenProcessHandle(pid, &handle_);
handle_            33 base/memory/scoped_open_process.h     if (handle_ == kNullProcessHandle)
handle_            36 base/memory/scoped_open_process.h     CloseProcessHandle(handle_);
handle_            37 base/memory/scoped_open_process.h     handle_ = kNullProcessHandle;
handle_            40 base/memory/scoped_open_process.h   ProcessHandle handle() const { return handle_; }
handle_            43 base/memory/scoped_open_process.h   ProcessHandle handle_;
handle_            37 base/sync_socket.h   explicit SyncSocket(Handle handle) : handle_(handle)  {}
handle_            77 base/sync_socket.h   Handle handle() const { return handle_; }
handle_            80 base/sync_socket.h   Handle handle_;
handle_            18 base/sync_socket_nacl.cc SyncSocket::SyncSocket() : handle_(kInvalidHandle) {
handle_            31 base/sync_socket_nacl.cc   if (handle_ != kInvalidHandle) {
handle_            32 base/sync_socket_nacl.cc     if (close(handle_) < 0)
handle_            34 base/sync_socket_nacl.cc     handle_ = kInvalidHandle;
handle_            40 base/sync_socket_nacl.cc   const ssize_t bytes_written = write(handle_, buffer, length);
handle_            45 base/sync_socket_nacl.cc   const ssize_t bytes_read = read(handle_, buffer, length);
handle_            56 base/sync_socket_posix.cc SyncSocket::SyncSocket() : handle_(kInvalidHandle) {}
handle_            65 base/sync_socket_posix.cc   DCHECK_EQ(socket_a->handle_, kInvalidHandle);
handle_            66 base/sync_socket_posix.cc   DCHECK_EQ(socket_b->handle_, kInvalidHandle);
handle_            93 base/sync_socket_posix.cc   socket_a->handle_ = handles[0];
handle_            94 base/sync_socket_posix.cc   socket_b->handle_ = handles[1];
handle_           100 base/sync_socket_posix.cc   const bool retval = CloseHandle(handle_);
handle_           101 base/sync_socket_posix.cc   handle_ = kInvalidHandle;
handle_           107 base/sync_socket_posix.cc   return SendHelper(handle_, buffer, length);
handle_           114 base/sync_socket_posix.cc   DCHECK_NE(handle_, kInvalidHandle);
handle_           116 base/sync_socket_posix.cc   if (ReadFromFD(handle_, charbuffer, length))
handle_           127 base/sync_socket_posix.cc   DCHECK_NE(handle_, kInvalidHandle);
handle_           133 base/sync_socket_posix.cc   if (handle_ >= FD_SETSIZE)
handle_           151 base/sync_socket_posix.cc     FD_SET(handle_, &read_fds);
handle_           157 base/sync_socket_posix.cc         select(handle_ + 1, &read_fds, NULL, NULL, &timeout_struct);
handle_           166 base/sync_socket_posix.cc     DCHECK(FD_ISSET(handle_, &read_fds));
handle_           184 base/sync_socket_posix.cc   DCHECK_NE(handle_, kInvalidHandle);
handle_           186 base/sync_socket_posix.cc   if (ioctl(handle_, FIONREAD, &number_chars) == -1) {
handle_           200 base/sync_socket_posix.cc   DCHECK_NE(handle_, kInvalidHandle);
handle_           201 base/sync_socket_posix.cc   return HANDLE_EINTR(shutdown(handle_, SHUT_RDWR)) >= 0;
handle_           207 base/sync_socket_posix.cc   DCHECK_NE(handle_, kInvalidHandle);
handle_           209 base/sync_socket_posix.cc   const long flags = fcntl(handle_, F_GETFL, NULL);
handle_           213 base/sync_socket_posix.cc     fcntl(handle_, F_SETFL, flags | O_NONBLOCK);
handle_           216 base/sync_socket_posix.cc   const size_t len = SendHelper(handle_, buffer, length);
handle_           220 base/sync_socket_posix.cc     fcntl(handle_, F_SETFL, flags);
handle_           199 base/sync_socket_win.cc SyncSocket::SyncSocket() : handle_(kInvalidHandle) {}
handle_           207 base/sync_socket_win.cc   return CreatePairImpl(&socket_a->handle_, &socket_b->handle_, false);
handle_           211 base/sync_socket_win.cc   if (handle_ == kInvalidHandle)
handle_           214 base/sync_socket_win.cc   const BOOL result = CloseHandle(handle_);
handle_           215 base/sync_socket_win.cc   handle_ = kInvalidHandle;
handle_           223 base/sync_socket_win.cc   DCHECK_NE(handle_, kInvalidHandle);
handle_           228 base/sync_socket_win.cc     if (WriteFile(handle_, static_cast<const char*>(buffer) + count,
handle_           248 base/sync_socket_win.cc   DCHECK_NE(handle_, kInvalidHandle);
handle_           253 base/sync_socket_win.cc     if (ReadFile(handle_, static_cast<char*>(buffer) + count,
handle_           264 base/sync_socket_win.cc   PeekNamedPipe(handle_, NULL, 0, NULL, &available, NULL);
handle_           293 base/sync_socket_win.cc       &WriteFile, handle_, reinterpret_cast<const char*>(buffer),
handle_           299 base/sync_socket_win.cc       &ReadFile, handle_, reinterpret_cast<char*>(buffer), length,
handle_           307 base/sync_socket_win.cc       &ReadFile, handle_, reinterpret_cast<char*>(buffer), length,
handle_           314 base/sync_socket_win.cc   return CreatePairImpl(&socket_a->handle_, &socket_b->handle_, true);
handle_           174 base/synchronization/condition_variable_win.cc     HANDLE handle_;
handle_           365 base/synchronization/condition_variable_win.cc WinXPCondVar::Event::Event() : handle_(0) {
handle_           370 base/synchronization/condition_variable_win.cc   if (0 == handle_) {
handle_           379 base/synchronization/condition_variable_win.cc   if (0 != handle_) {
handle_           380 base/synchronization/condition_variable_win.cc     int ret_val = CloseHandle(handle_);
handle_           387 base/synchronization/condition_variable_win.cc   DCHECK(!handle_);
handle_           388 base/synchronization/condition_variable_win.cc   handle_ = CreateEvent(NULL, false, false, NULL);
handle_           389 base/synchronization/condition_variable_win.cc   DCHECK(handle_);
handle_           427 base/synchronization/condition_variable_win.cc   return handle_;
handle_           456 base/synchronization/condition_variable_win.cc   return (0 != handle_) && ValidateLinks();
handle_           460 base/synchronization/condition_variable_win.cc   return (0 == handle_) && ValidateLinks();
handle_            84 base/synchronization/waitable_event.h   HANDLE handle() const { return handle_; }
handle_           133 base/synchronization/waitable_event.h   HANDLE handle_;
handle_            17 base/synchronization/waitable_event_win.cc     : handle_(CreateEvent(NULL, manual_reset, signaled, NULL)) {
handle_            20 base/synchronization/waitable_event_win.cc   CHECK(handle_);
handle_            24 base/synchronization/waitable_event_win.cc     : handle_(handle) {
handle_            29 base/synchronization/waitable_event_win.cc   CloseHandle(handle_);
handle_            33 base/synchronization/waitable_event_win.cc   HANDLE rv = handle_;
handle_            34 base/synchronization/waitable_event_win.cc   handle_ = INVALID_HANDLE_VALUE;
handle_            39 base/synchronization/waitable_event_win.cc   ResetEvent(handle_);
handle_            43 base/synchronization/waitable_event_win.cc   SetEvent(handle_);
handle_            52 base/synchronization/waitable_event_win.cc   DWORD result = WaitForSingleObject(handle_, INFINITE);
handle_            65 base/synchronization/waitable_event_win.cc   DWORD result = WaitForSingleObject(handle_, static_cast<DWORD>(timeout));
handle_            41 base/threading/platform_thread.h       : handle_(0),
handle_            46 base/threading/platform_thread.h       : handle_(handle),
handle_            52 base/threading/platform_thread.h       : handle_(handle),
handle_            57 base/threading/platform_thread.h     return handle_ == other.handle_;
handle_            61 base/threading/platform_thread.h     return !handle_;
handle_            65 base/threading/platform_thread.h     return handle_;
handle_            71 base/threading/platform_thread.h   Handle handle_;
handle_           228 base/threading/platform_thread_posix.cc   CHECK_EQ(0, pthread_join(thread_handle.handle_, NULL));
handle_           205 base/threading/platform_thread_win.cc   DCHECK(thread_handle.handle_);
handle_           217 base/threading/platform_thread_win.cc   DWORD result = WaitForSingleObject(thread_handle.handle_, INFINITE);
handle_           223 base/threading/platform_thread_win.cc     debug::Alias(&thread_handle.handle_);
handle_           227 base/threading/platform_thread_win.cc   CloseHandle(thread_handle.handle_);
handle_           235 base/threading/platform_thread_win.cc       ::SetThreadPriority(handle.handle_, THREAD_PRIORITY_NORMAL);
handle_           238 base/threading/platform_thread_win.cc       ::SetThreadPriority(handle.handle_, THREAD_PRIORITY_TIME_CRITICAL);
handle_            53 base/threading/watchdog.cc                                     &handle_);
handle_            64 base/threading/watchdog.cc   PlatformThread::Join(handle_);
handle_            84 base/threading/watchdog.h   PlatformThreadHandle handle_;
handle_            40 base/win/scoped_handle.h   GenericScopedHandle() : handle_(Traits::NullHandle()) {}
handle_            42 base/win/scoped_handle.h   explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle()) {
handle_            47 base/win/scoped_handle.h   GenericScopedHandle(RValue other) : handle_(Traits::NullHandle()) {
handle_            56 base/win/scoped_handle.h     return Traits::IsHandleValid(handle_);
handle_            68 base/win/scoped_handle.h     if (handle_ != handle) {
handle_            72 base/win/scoped_handle.h         handle_ = handle;
handle_            80 base/win/scoped_handle.h     return handle_;
handle_            84 base/win/scoped_handle.h     return handle_;
handle_            89 base/win/scoped_handle.h     Handle temp = handle_;
handle_            90 base/win/scoped_handle.h     handle_ = Traits::NullHandle();
handle_           100 base/win/scoped_handle.h     if (Traits::IsHandleValid(handle_)) {
handle_           101 base/win/scoped_handle.h       Verifier::StopTracking(handle_, this, BASE_WIN_GET_CALLER,
handle_           104 base/win/scoped_handle.h       if (!Traits::CloseHandle(handle_))
handle_           107 base/win/scoped_handle.h       handle_ = Traits::NullHandle();
handle_           112 base/win/scoped_handle.h   Handle handle_;
handle_           105 chrome/browser/common/cancelable_request.cc   DCHECK(handle_ == 0 && provider_ == NULL && consumer_ == NULL);
handle_           108 chrome/browser/common/cancelable_request.cc   handle_ = handle;
handle_           549 chrome/browser/common/cancelable_request.h     return handle_;
handle_           580 chrome/browser/common/cancelable_request.h     consumer_->DidExecute(provider_, handle_);
handle_           585 chrome/browser/common/cancelable_request.h     consumer_->WillExecute(provider_, handle_);
handle_           603 chrome/browser/common/cancelable_request.h   CancelableRequestProvider::Handle handle_;
handle_            43 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   virtual bool Connected() OVERRIDE { return handle_; }
handle_            62 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   scoped_ptr<brlapi_handle_t, base::FreeDeleter> handle_;
handle_            83 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   DCHECK(!handle_);
handle_            84 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   handle_.reset((brlapi_handle_t*) malloc(
handle_            86 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   int fd = libbrlapi_loader_->brlapi__openConnection(handle_.get(), NULL, NULL);
handle_            88 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc     handle_.reset();
handle_           101 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc           handle_.get(), path, pathElements, NULL) < 0) {
handle_           127 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc           handle_.get(), brlapi_rangeType_command, extraKeys,
handle_           147 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   if (!handle_) {
handle_           152 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc       handle_.get());
handle_           153 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   handle_.reset();
handle_           170 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc           handle_.get(), &columns, &rows) < 0) {
handle_           181 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   if (libbrlapi_loader_->brlapi__writeDots(handle_.get(), cells) < 0) {
handle_           192 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc       handle_.get(), 0 /*wait*/, key_code);
handle_           196 chrome/browser/extensions/api/braille_display_private/brlapi_connection.cc   if (!handle_) {
handle_           718 chrome/browser/extensions/api/usb/usb_api.cc   handle_ = device->Open();
handle_           719 chrome/browser/extensions/api/usb/usb_api.cc   if (!handle_) {
handle_           726 chrome/browser/extensions/api/usb/usb_api.cc       manager_->Add(new UsbDeviceResource(extension_->id(), handle_)),
handle_           727 chrome/browser/extensions/api/usb/usb_api.cc       handle_->device()->vendor_id(),
handle_           728 chrome/browser/extensions/api/usb/usb_api.cc       handle_->device()->product_id()));
handle_           139 chrome/browser/extensions/api/usb/usb_api.h   scoped_refptr<UsbDeviceHandle> handle_;
handle_            59 chrome/browser/task_manager/child_process_resource_provider.cc   base::ProcessHandle handle_;
handle_            84 chrome/browser/task_manager/child_process_resource_provider.cc       handle_(handle),
handle_           122 chrome/browser/task_manager/child_process_resource_provider.cc   return handle_;
handle_            48 chrome/browser/task_manager/worker_resource_provider.cc   base::ProcessHandle handle() const { return handle_; }
handle_            68 chrome/browser/task_manager/worker_resource_provider.cc   base::ProcessHandle handle_;
handle_           100 chrome/browser/task_manager/worker_resource_provider.cc   handle_ = handle;
handle_           121 chrome/browser/task_manager/worker_resource_provider.cc   return handle_;
handle_           137 chrome/browser/usb/usb_device_handle.cc   const scoped_refptr<UsbDeviceHandle> handle_;
handle_           146 chrome/browser/usb/usb_device_handle.cc     : handle_(handle),
handle_           152 chrome/browser/usb/usb_device_handle.cc   libusb_release_interface(handle_->handle(), interface_number_);
handle_           156 chrome/browser/usb/usb_device_handle.cc   return libusb_claim_interface(handle_->handle(), interface_number_) == 0;
handle_           184 chrome/browser/usb/usb_device_handle.cc       handle_(handle),
handle_           198 chrome/browser/usb/usb_device_handle.cc   libusb_close(handle_);
handle_           199 chrome/browser/usb/usb_device_handle.cc   handle_ = NULL;
handle_           337 chrome/browser/usb/usb_device_handle.cc   const int rv = libusb_set_interface_alt_setting(handle_,
handle_           352 chrome/browser/usb/usb_device_handle.cc   return libusb_reset_device(handle_) == 0;
handle_           357 chrome/browser/usb/usb_device_handle.cc   PlatformUsbDevice device = libusb_get_device(handle_);
handle_           370 chrome/browser/usb/usb_device_handle.cc       handle_, 0, 0,
handle_           381 chrome/browser/usb/usb_device_handle.cc         handle_, desc.iSerialNumber, langid[i],
handle_           420 chrome/browser/usb/usb_device_handle.cc       handle_,
handle_           449 chrome/browser/usb/usb_device_handle.cc   libusb_fill_bulk_transfer(transfer, handle_, new_endpoint,
handle_           476 chrome/browser/usb/usb_device_handle.cc   libusb_fill_interrupt_transfer(transfer, handle_, new_endpoint,
handle_           507 chrome/browser/usb/usb_device_handle.cc   libusb_fill_iso_transfer(transfer, handle_, new_endpoint,
handle_            61 chrome/browser/usb/usb_device_handle.h   PlatformUsbDeviceHandle handle() const { return handle_; }
handle_           162 chrome/browser/usb/usb_device_handle.h   PlatformUsbDeviceHandle handle_;
handle_            15 chrome/installer/test/resource_updater.cc ResourceUpdater::ResourceUpdater() : handle_(NULL) {
handle_            19 chrome/installer/test/resource_updater.cc   if (handle_ != NULL) {
handle_            21 chrome/installer/test/resource_updater.cc     BOOL result = EndUpdateResource(handle_, TRUE);
handle_            27 chrome/installer/test/resource_updater.cc   DCHECK(handle_ == NULL);
handle_            28 chrome/installer/test/resource_updater.cc   handle_ = BeginUpdateResource(pe_image_path.value().c_str(), FALSE);
handle_            29 chrome/installer/test/resource_updater.cc   if (handle_ == NULL) {
handle_            41 chrome/installer/test/resource_updater.cc   DCHECK(handle_ != NULL);
handle_            45 chrome/installer/test/resource_updater.cc     if (UpdateResource(handle_, type.c_str(), name.c_str(), language_id,
handle_            58 chrome/installer/test/resource_updater.cc   DCHECK(handle_ != NULL);
handle_            60 chrome/installer/test/resource_updater.cc   if (EndUpdateResource(handle_, FALSE) == FALSE) {
handle_            64 chrome/installer/test/resource_updater.cc   handle_ = NULL;
handle_            41 chrome/installer/test/resource_updater.h   HANDLE handle_;
handle_            81 chrome/service/service_utility_process_host.cc         : handle_(base::kNullProcessHandle),
handle_            90 chrome/service/service_utility_process_host.cc   base::KillProcess(handle_, content::RESULT_CODE_NORMAL_EXIT, false);
handle_           214 chrome/service/service_utility_process_host.cc     base::LaunchProcess(*cmd_line, base::LaunchOptions(), &handle_);
handle_           217 chrome/service/service_utility_process_host.cc     handle_ = content::StartSandboxedProcess(&delegate, cmd_line);
handle_           219 chrome/service/service_utility_process_host.cc   return (handle_ != base::kNullProcessHandle);
handle_           272 chrome/service/service_utility_process_host.cc   return handle_;
handle_           139 chrome/service/service_utility_process_host.h   base::ProcessHandle handle() const { return handle_; }
handle_           156 chrome/service/service_utility_process_host.h   base::ProcessHandle handle_;
handle_            53 components/autofill/core/browser/webdata/web_data_service_unittest.cc   AutofillWebDataServiceConsumer() : handle_(0) {}
handle_            58 components/autofill/core/browser/webdata/web_data_service_unittest.cc     handle_ = handle;
handle_            66 components/autofill/core/browser/webdata/web_data_service_unittest.cc   WebDataServiceBase::Handle handle() { return handle_; }
handle_            70 components/autofill/core/browser/webdata/web_data_service_unittest.cc   WebDataServiceBase::Handle handle_;
handle_            20 components/webdata/common/web_data_request_manager.cc   handle_ = manager_->GetNextRequestHandle();
handle_            27 components/webdata/common/web_data_request_manager.cc     manager_->CancelRequest(handle_);
handle_            35 components/webdata/common/web_data_request_manager.cc   return handle_;
handle_            77 components/webdata/common/web_data_request_manager.h   WebDataServiceBase::Handle handle_;
handle_           129 content/browser/power_save_blocker_win.cc   base::win::ScopedHandle handle_;
handle_           139 content/browser/power_save_blocker_win.cc   handle_.Set(CreatePowerRequest(RequestType(), reason_));
handle_           147 content/browser/power_save_blocker_win.cc   DeletePowerRequest(RequestType(), handle_.Take());
handle_            34 content/child/socket_stream_dispatcher.cc       : socket_id_(kNoSocketId), handle_(handle), delegate_(delegate) {}
handle_            58 content/child/socket_stream_dispatcher.cc   blink::WebSocketStreamHandle* handle_;
handle_            92 content/child/socket_stream_dispatcher.cc     delegate_->WillOpenStream(handle_, url);
handle_            98 content/child/socket_stream_dispatcher.cc       static_cast<WebSocketStreamHandleImpl*>(handle_);
handle_           100 content/child/socket_stream_dispatcher.cc       static_cast<SocketStreamHandleData*>(impl->GetUserData(handle_));
handle_           117 content/child/socket_stream_dispatcher.cc     delegate_->WillSendData(handle_, &data[0], data.size());
handle_           133 content/child/socket_stream_dispatcher.cc     delegate_->DidOpenStream(handle_, max_pending_send_allowed);
handle_           141 content/child/socket_stream_dispatcher.cc     delegate_->DidSendData(handle_, amount_sent);
handle_           149 content/child/socket_stream_dispatcher.cc     delegate_->DidReceiveData(handle_, &data[0], data.size());
handle_           160 content/child/socket_stream_dispatcher.cc     delegate_->DidClose(handle_);
handle_           170 content/child/socket_stream_dispatcher.cc     delegate_->DidFail(handle_, error_code, base::ASCIIToUTF16(error_msg));
handle_            68 content/child/web_socket_stream_handle_impl.cc     DCHECK(!handle_);
handle_            73 content/child/web_socket_stream_handle_impl.cc   WebSocketStreamHandleImpl* handle_;
handle_            83 content/child/web_socket_stream_handle_impl.cc     : handle_(handle),
handle_            93 content/child/web_socket_stream_handle_impl.cc   bridge_ = dispatcher->CreateBridge(handle_, this);
handle_           113 content/child/web_socket_stream_handle_impl.cc   handle_ = NULL;
handle_           127 content/child/web_socket_stream_handle_impl.cc     client_->didOpenStream(handle_, max_amount_send_allowed);
handle_           133 content/child/web_socket_stream_handle_impl.cc     client_->didSendData(handle_, amount_sent);
handle_           139 content/child/web_socket_stream_handle_impl.cc     client_->didReceiveData(handle_, WebData(data, size));
handle_           146 content/child/web_socket_stream_handle_impl.cc   WebSocketStreamHandleImpl* handle = handle_;
handle_           147 content/child/web_socket_stream_handle_impl.cc   handle_ = NULL;
handle_           163 content/child/web_socket_stream_handle_impl.cc         handle_,
handle_           124 content/common/gpu/gpu_command_buffer_stub.cc       handle_(handle),
handle_           356 content/common/gpu/gpu_command_buffer_stub.cc   if (handle_.is_null() && !active_url_.is_empty()) {
handle_           425 content/common/gpu/gpu_command_buffer_stub.cc   if (!handle_.is_null()) {
handle_           437 content/common/gpu/gpu_command_buffer_stub.cc         handle_);
handle_           568 content/common/gpu/gpu_command_buffer_stub.cc   if (handle_.is_null() && !active_url_.is_empty()) {
handle_           655 content/common/gpu/gpu_command_buffer_stub.cc       handle_.is_null(), state.context_lost_reason, active_url_));
handle_           230 content/common/gpu/gpu_command_buffer_stub.h   gfx::GLSurfaceHandle handle_;
handle_           170 content/common/gpu/image_transport_surface.h   gfx::PluginWindowHandle handle_;
handle_            48 content/common/gpu/texture_image_transport_surface.cc         handle_(handle),
handle_            74 content/common/gpu/texture_image_transport_surface.cc   GpuChannel* parent_channel = manager->LookupChannel(handle_.parent_client_id);
handle_           104 content/common/gpu/texture_image_transport_surface.h   gfx::GLSurfaceHandle handle_;
handle_            40 content/public/test/mock_blob_url_request_context.cc   handle_ = context_->AddFinishedBlob(blob_data);
handle_            53 content/public/test/mock_blob_url_request_context.h   scoped_ptr<webkit_blob::BlobDataHandle> handle_;
handle_            71 content/renderer/device_orientation/device_motion_event_pump_unittest.cc         &handle_));
handle_            87 content/renderer/device_orientation/device_motion_event_pump_unittest.cc   base::SharedMemoryHandle handle_;
handle_            98 content/renderer/device_orientation/device_motion_event_pump_unittest.cc   motion_pump_->OnDidStart(handle_);
handle_           125 content/renderer/device_orientation/device_motion_event_pump_unittest.cc   motion_pump_->OnDidStart(handle_);
handle_            74 content/renderer/device_orientation/device_orientation_event_pump_unittest.cc     shared_memory_.ShareToProcess(base::kNullProcessHandle, &handle_);
handle_            95 content/renderer/device_orientation/device_orientation_event_pump_unittest.cc   base::SharedMemoryHandle handle_;
handle_           111 content/renderer/device_orientation/device_orientation_event_pump_unittest.cc   orientation_pump_->OnDidStart(handle_);
handle_           137 content/renderer/device_orientation/device_orientation_event_pump_unittest.cc   orientation_pump_->OnDidStart(handle_);
handle_           163 content/renderer/device_orientation/device_orientation_event_pump_unittest.cc   orientation_pump_->OnDidStart(handle_);
handle_            33 content/renderer/media/audio_message_filter_unittest.cc     handle_ = handle;
handle_            44 content/renderer/media/audio_message_filter_unittest.cc     handle_ = base::SharedMemory::NULLHandle();
handle_            55 content/renderer/media/audio_message_filter_unittest.cc   base::SharedMemoryHandle handle() { return handle_; }
handle_            63 content/renderer/media/audio_message_filter_unittest.cc   base::SharedMemoryHandle handle_;
handle_            50 crypto/scoped_capi_types.h   explicit ScopedCAPIHandle(CAPIHandle handle = NULL) : handle_(handle) {}
handle_            57 crypto/scoped_capi_types.h     if (handle_ != handle) {
handle_            59 crypto/scoped_capi_types.h       free_proc(handle_);
handle_            60 crypto/scoped_capi_types.h       handle_ = handle;
handle_            64 crypto/scoped_capi_types.h   operator CAPIHandle() const { return handle_; }
handle_            65 crypto/scoped_capi_types.h   CAPIHandle get() const { return handle_; }
handle_            68 crypto/scoped_capi_types.h     CHECK(handle_ == NULL);
handle_            69 crypto/scoped_capi_types.h     return &handle_;
handle_            73 crypto/scoped_capi_types.h     return handle_ == handle;
handle_            77 crypto/scoped_capi_types.h     return handle_ != handle;
handle_            81 crypto/scoped_capi_types.h     CAPIHandle tmp = b.handle_;
handle_            82 crypto/scoped_capi_types.h     b.handle_ = handle_;
handle_            83 crypto/scoped_capi_types.h     handle_ = tmp;
handle_            87 crypto/scoped_capi_types.h     CAPIHandle tmp = handle_;
handle_            88 crypto/scoped_capi_types.h     handle_ = NULL;
handle_            93 crypto/scoped_capi_types.h   CAPIHandle handle_;
handle_            26 extensions/renderer/scoped_persistent.h       handle_.Reset(GetIsolate(handle), handle);
handle_            31 extensions/renderer/scoped_persistent.h   void reset() { handle_.Reset(); }
handle_            33 extensions/renderer/scoped_persistent.h   bool IsEmpty() const { return handle_.IsEmpty(); }
handle_            36 extensions/renderer/scoped_persistent.h     if (handle_.IsEmpty())
handle_            38 extensions/renderer/scoped_persistent.h     return v8::Local<T>::New(GetIsolate(handle_), handle_);
handle_            42 extensions/renderer/scoped_persistent.h     if (handle_.IsEmpty())
handle_            44 extensions/renderer/scoped_persistent.h     return v8::Local<T>::New(isolate, handle_);
handle_            50 extensions/renderer/scoped_persistent.h     handle_.SetWeak(parameters, callback);
handle_            72 extensions/renderer/scoped_persistent.h   v8::Persistent<T> handle_;
handle_            33 media/audio/pulse/pulse_input.cc       handle_(NULL),
handle_            42 media/audio/pulse/pulse_input.cc   DCHECK(!handle_);
handle_            48 media/audio/pulse/pulse_input.cc   if (!pulse::CreateInputStream(pa_mainloop_, pa_context_, &handle_, params_,
handle_            53 media/audio/pulse/pulse_input.cc   DCHECK(handle_);
handle_            63 media/audio/pulse/pulse_input.cc   DCHECK(handle_);
handle_            74 media/audio/pulse/pulse_input.cc   pa_stream_drop(handle_);
handle_            79 media/audio/pulse/pulse_input.cc   pa_stream_set_read_callback(handle_, &ReadCallback, this);
handle_            80 media/audio/pulse/pulse_input.cc   pa_stream_readable_size(handle_);
handle_            83 media/audio/pulse/pulse_input.cc   pa_operation* operation = pa_stream_cork(handle_, 0, NULL, NULL);
handle_            98 media/audio/pulse/pulse_input.cc   pa_operation* operation = pa_stream_flush(handle_,
handle_           104 media/audio/pulse/pulse_input.cc   pa_stream_set_read_callback(handle_, NULL, NULL);
handle_           105 media/audio/pulse/pulse_input.cc   operation = pa_stream_cork(handle_, 1, &pulse::StreamSuccessCallback,
handle_           115 media/audio/pulse/pulse_input.cc     if (handle_) {
handle_           117 media/audio/pulse/pulse_input.cc       pa_stream_set_state_callback(handle_, NULL, NULL);
handle_           118 media/audio/pulse/pulse_input.cc       pa_stream_flush(handle_, NULL, NULL);
handle_           120 media/audio/pulse/pulse_input.cc       if (pa_stream_get_state(handle_) != PA_STREAM_UNCONNECTED)
handle_           121 media/audio/pulse/pulse_input.cc         pa_stream_disconnect(handle_);
handle_           124 media/audio/pulse/pulse_input.cc       pa_stream_unref(handle_);
handle_           125 media/audio/pulse/pulse_input.cc       handle_ = NULL;
handle_           140 media/audio/pulse/pulse_input.cc   if (!handle_)
handle_           143 media/audio/pulse/pulse_input.cc   size_t index = pa_stream_get_device_index(handle_);
handle_           170 media/audio/pulse/pulse_input.cc     if (!handle_)
handle_           173 media/audio/pulse/pulse_input.cc     size_t index = pa_stream_get_device_index(handle_);
handle_           184 media/audio/pulse/pulse_input.cc     if (!handle_)
handle_           187 media/audio/pulse/pulse_input.cc     size_t index = pa_stream_get_device_index(handle_);
handle_           248 media/audio/pulse/pulse_input.cc       handle_, params_.sample_rate(), params_.GetBytesPerFrame());
handle_           262 media/audio/pulse/pulse_input.cc     pa_stream_peek(handle_, &data, &length);
handle_           269 media/audio/pulse/pulse_input.cc     pa_stream_drop(handle_);
handle_           270 media/audio/pulse/pulse_input.cc   } while (pa_stream_readable_size(handle_) > 0);
handle_            73 media/audio/pulse/pulse_input.h   pa_stream* handle_;
handle_            19 media/base/bitstream_buffer.h         handle_(handle),
handle_            24 media/base/bitstream_buffer.h   base::SharedMemoryHandle handle() const { return handle_; }
handle_            29 media/base/bitstream_buffer.h   base::SharedMemoryHandle handle_;
handle_            12 mojo/bindings/js/handle.cc     : handle_(mojo::Handle(handle)) {
handle_            26 mojo/bindings/js/handle.h   mojo::Handle get() const { return handle_.get(); }
handle_            27 mojo/bindings/js/handle.h   mojo::Handle release() { return handle_.release(); }
handle_            28 mojo/bindings/js/handle.h   void Close() { handle_.reset(); }
handle_            33 mojo/bindings/js/handle.h   mojo::ScopedHandle handle_;
handle_            21 mojo/embedder/scoped_platform_handle.h   explicit ScopedPlatformHandle(PlatformHandle handle) : handle_(handle) {}
handle_            22 mojo/embedder/scoped_platform_handle.h   ~ScopedPlatformHandle() { handle_.CloseIfNecessary(); }
handle_            25 mojo/embedder/scoped_platform_handle.h   ScopedPlatformHandle(RValue other) : handle_(other.object->release()) {}
handle_            27 mojo/embedder/scoped_platform_handle.h     handle_ = other.object->release();
handle_            31 mojo/embedder/scoped_platform_handle.h   const PlatformHandle& get() const { return handle_; }
handle_            34 mojo/embedder/scoped_platform_handle.h     PlatformHandle temp = handle_;
handle_            35 mojo/embedder/scoped_platform_handle.h     handle_ = other.handle_;
handle_            36 mojo/embedder/scoped_platform_handle.h     other.handle_ = temp;
handle_            40 mojo/embedder/scoped_platform_handle.h     PlatformHandle rv = handle_;
handle_            41 mojo/embedder/scoped_platform_handle.h     handle_ = PlatformHandle();
handle_            46 mojo/embedder/scoped_platform_handle.h     handle_.CloseIfNecessary();
handle_            47 mojo/embedder/scoped_platform_handle.h     handle_ = handle;
handle_            51 mojo/embedder/scoped_platform_handle.h     return handle_.is_valid();
handle_            55 mojo/embedder/scoped_platform_handle.h   PlatformHandle handle_;
handle_            31 mojo/public/c/system/tests/core_perftest.cc       : handle_(handle),
handle_            42 mojo/public/c/system/tests/core_perftest.cc       MojoResult result = MojoWriteMessage(handle_, buffer, num_bytes_, NULL, 0,
handle_            61 mojo/public/c/system/tests/core_perftest.cc   const MojoHandle handle_;
handle_            71 mojo/public/c/system/tests/core_perftest.cc       : handle_(handle),
handle_            81 mojo/public/c/system/tests/core_perftest.cc       MojoResult result = MojoReadMessage(handle_, buffer, &num_bytes, NULL,
handle_            89 mojo/public/c/system/tests/core_perftest.cc         result = MojoWait(handle_, MOJO_WAIT_FLAG_READABLE,
handle_           109 mojo/public/c/system/tests/core_perftest.cc   const MojoHandle handle_;
handle_            24 mojo/public/cpp/environment/lib/default_async_waiter.cc       : handle_(handle),
handle_            30 mojo/public/cpp/environment/lib/default_async_waiter.cc     RunLoop::current()->RemoveHandler(handle_);
handle_            54 mojo/public/cpp/environment/lib/default_async_waiter.cc   const Handle handle_;
handle_            99 mojo/public/cpp/system/core.h   explicit ScopedHandleBase(HandleType handle) : handle_(handle) {}
handle_           104 mojo/public/cpp/system/core.h       : handle_(other.release()) {
handle_           108 mojo/public/cpp/system/core.h   ScopedHandleBase(RValue other) : handle_(other.object->release()) {}
handle_           110 mojo/public/cpp/system/core.h     handle_ = other.object->release();
handle_           114 mojo/public/cpp/system/core.h   const HandleType& get() const { return handle_; }
handle_           127 mojo/public/cpp/system/core.h     handle_.swap(other.handle_);
handle_           132 mojo/public/cpp/system/core.h     rv.swap(handle_);
handle_           138 mojo/public/cpp/system/core.h     handle_ = handle;
handle_           142 mojo/public/cpp/system/core.h     return handle_.is_valid();
handle_           147 mojo/public/cpp/system/core.h     if (!handle_.is_valid())
handle_           149 mojo/public/cpp/system/core.h     MojoResult result MOJO_ALLOW_UNUSED = MojoClose(handle_.value());
handle_           153 mojo/public/cpp/system/core.h   HandleType handle_;
handle_            15 mojo/services/gles2/mojo_buffer_backing.cc     : handle_(handle.Pass()), memory_(memory), size_(size) {}
handle_            30 mojo/services/gles2/mojo_buffer_backing.h   mojo::ScopedSharedBufferHandle handle_;
handle_           127 mojo/system/raw_channel_unittest.cc       : handle_(handle) {}
handle_           135 mojo/system/raw_channel_unittest.cc       CHECK(mojo::test::NonBlockingRead(handle_, buffer, sizeof(buffer),
handle_           183 mojo/system/raw_channel_unittest.cc   const embedder::PlatformHandle handle_;
handle_            90 mojo/system/raw_channel_win.cc     HANDLE handle() const { return handle_.get().handle; }
handle_           134 mojo/system/raw_channel_win.cc     embedder::ScopedPlatformHandle handle_;
handle_           168 mojo/system/raw_channel_win.cc   embedder::ScopedPlatformHandle handle_;
handle_           179 mojo/system/raw_channel_win.cc     embedder::ScopedPlatformHandle handle) : handle_(handle.Pass()),
handle_           188 mojo/system/raw_channel_win.cc   owner_->message_loop_for_io()->RegisterIOHandler(handle_.get().handle, this);
handle_           326 mojo/system/raw_channel_win.cc     : handle_(handle.Pass()),
handle_           330 mojo/system/raw_channel_win.cc   DCHECK(handle_.is_valid());
handle_           477 mojo/system/raw_channel_win.cc   DCHECK(handle_.is_valid());
handle_           480 mojo/system/raw_channel_win.cc           handle_.get().handle, FILE_SKIP_COMPLETION_PORT_ON_SUCCESS)) {
handle_           485 mojo/system/raw_channel_win.cc   io_handler_ = new RawChannelIOHandler(this, handle_.Pass());
handle_            77 mojo/system/raw_shared_buffer.h   embedder::ScopedPlatformHandle handle_;
handle_            36 mojo/system/raw_shared_buffer_posix.cc   DCHECK(!handle_.is_valid());
handle_            81 mojo/system/raw_shared_buffer_posix.cc   handle_.reset(embedder::PlatformHandle(fd.release()));
handle_           100 mojo/system/raw_shared_buffer_posix.cc                          handle_.get().fd, static_cast<off_t>(real_offset));
handle_            22 mojo/system/raw_shared_buffer_win.cc   DCHECK(!handle_.is_valid());
handle_            36 mojo/system/raw_shared_buffer_win.cc   handle_.reset(embedder::PlatformHandle(CreateFileMapping(
handle_            39 mojo/system/raw_shared_buffer_win.cc   if (!handle_.is_valid()) {
handle_            62 mojo/system/raw_shared_buffer_win.cc       handle_.get().handle, FILE_MAP_READ | FILE_MAP_WRITE, 0,
handle_            52 net/base/prioritized_dispatcher_unittest.cc       return handle_;
handle_            56 net/base/prioritized_dispatcher_unittest.cc       CHECK(handle_.is_null());
handle_            62 net/base/prioritized_dispatcher_unittest.cc         handle_ = dispatcher_->Add(this, priority_);
handle_            64 net/base/prioritized_dispatcher_unittest.cc         handle_ = dispatcher_->AddAtHead(this, priority_);
handle_            67 net/base/prioritized_dispatcher_unittest.cc       if (handle_.is_null()) {
handle_            73 net/base/prioritized_dispatcher_unittest.cc         EXPECT_EQ(priority_, handle_.priority());
handle_            74 net/base/prioritized_dispatcher_unittest.cc         EXPECT_EQ(tag_, reinterpret_cast<TestJob*>(handle_.value())->tag_);
handle_            80 net/base/prioritized_dispatcher_unittest.cc       CHECK(!handle_.is_null());
handle_            85 net/base/prioritized_dispatcher_unittest.cc       handle_ = dispatcher_->ChangePriority(handle_, priority);
handle_            87 net/base/prioritized_dispatcher_unittest.cc       if (handle_.is_null()) {
handle_            93 net/base/prioritized_dispatcher_unittest.cc         EXPECT_EQ(priority, handle_.priority());
handle_            94 net/base/prioritized_dispatcher_unittest.cc         EXPECT_EQ(tag_, reinterpret_cast<TestJob*>(handle_.value())->tag_);
handle_           101 net/base/prioritized_dispatcher_unittest.cc       CHECK(!handle_.is_null());
handle_           105 net/base/prioritized_dispatcher_unittest.cc       dispatcher_->Cancel(handle_);
handle_           108 net/base/prioritized_dispatcher_unittest.cc       handle_ = PrioritizedDispatcher::Handle();
handle_           122 net/base/prioritized_dispatcher_unittest.cc       handle_ = PrioritizedDispatcher::Handle();
handle_           133 net/base/prioritized_dispatcher_unittest.cc     PrioritizedDispatcher::Handle handle_;
handle_            27 net/dns/dns_config_watcher_mac.cc     handle_ = dlopen("/usr/lib/libSystem.dylib",
handle_            29 net/dns/dns_config_watcher_mac.cc     if (!handle_)
handle_            33 net/dns/dns_config_watcher_mac.cc             dlsym(handle_, "dns_configuration_notify_key"));
handle_            36 net/dns/dns_config_watcher_mac.cc             dlsym(handle_, "dns_configuration_copy"));
handle_            39 net/dns/dns_config_watcher_mac.cc             dlsym(handle_, "dns_configuration_free"));
handle_            43 net/dns/dns_config_watcher_mac.cc     if (handle_)
handle_            44 net/dns/dns_config_watcher_mac.cc       dlclose(handle_);
handle_            52 net/dns/dns_config_watcher_mac.cc   void* handle_;
handle_          1269 net/dns/host_resolver_impl.cc       DCHECK(handle_.is_null());
handle_          1270 net/dns/host_resolver_impl.cc       handle_ = handle;
handle_          1350 net/dns/host_resolver_impl.cc     handle_.Reset();
handle_          1380 net/dns/host_resolver_impl.cc     return !handle_.is_null();
handle_          1402 net/dns/host_resolver_impl.cc       resolver_->dispatcher_.Cancel(handle_);
handle_          1403 net/dns/host_resolver_impl.cc       handle_.Reset();
handle_          1413 net/dns/host_resolver_impl.cc       if (priority() != static_cast<RequestPriority>(handle_.priority()))
handle_          1415 net/dns/host_resolver_impl.cc       handle_ = resolver_->dispatcher_.ChangePriority(handle_, priority());
handle_          1429 net/dns/host_resolver_impl.cc     handle_.Reset();
handle_          1664 net/dns/host_resolver_impl.cc       resolver_->dispatcher_.Cancel(handle_);
handle_          1665 net/dns/host_resolver_impl.cc       handle_.Reset();
handle_          1774 net/dns/host_resolver_impl.cc   PrioritizedDispatcher::Handle handle_;
handle_           216 net/dns/host_resolver_impl_unittest.cc     DCHECK(!handle_);
handle_           223 net/dns/host_resolver_impl_unittest.cc         &handle_,
handle_           232 net/dns/host_resolver_impl_unittest.cc     DCHECK(!handle_);
handle_           238 net/dns/host_resolver_impl_unittest.cc     DCHECK(handle_);
handle_           239 net/dns/host_resolver_impl_unittest.cc     resolver_->CancelRequest(handle_);
handle_           240 net/dns/host_resolver_impl_unittest.cc     handle_ = NULL;
handle_           248 net/dns/host_resolver_impl_unittest.cc   bool pending() const { return handle_ != NULL; }
handle_           287 net/dns/host_resolver_impl_unittest.cc     handle_ = NULL;
handle_           309 net/dns/host_resolver_impl_unittest.cc   HostResolver::RequestHandle handle_;
handle_           228 net/http/http_proxy_client_socket_pool_unittest.cc   ClientSocketHandle handle_;
handle_           261 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateNoTunnelParams(), LOW, CompletionCallback(),
handle_           264 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_TRUE(handle_.is_initialized());
handle_           265 net/http/http_proxy_client_socket_pool_unittest.cc   ASSERT_TRUE(handle_.socket());
handle_           267 net/http/http_proxy_client_socket_pool_unittest.cc           static_cast<HttpProxyClientSocket*>(handle_.socket());
handle_           276 net/http/http_proxy_client_socket_pool_unittest.cc             handle_.Init("a", CreateNoTunnelParams(), HIGHEST,
handle_           328 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           331 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           332 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           337 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_TRUE(handle_.is_initialized());
handle_           338 net/http/http_proxy_client_socket_pool_unittest.cc   ASSERT_TRUE(handle_.socket());
handle_           340 net/http/http_proxy_client_socket_pool_unittest.cc       static_cast<ProxyClientSocket*>(handle_.socket());
handle_           370 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           373 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_TRUE(handle_.is_initialized());
handle_           374 net/http/http_proxy_client_socket_pool_unittest.cc   ASSERT_TRUE(handle_.socket());
handle_           376 net/http/http_proxy_client_socket_pool_unittest.cc           static_cast<HttpProxyClientSocket*>(handle_.socket());
handle_           407 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           410 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           411 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           415 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_TRUE(handle_.is_initialized());
handle_           416 net/http/http_proxy_client_socket_pool_unittest.cc   ASSERT_TRUE(handle_.socket());
handle_           418 net/http/http_proxy_client_socket_pool_unittest.cc           static_cast<HttpProxyClientSocket*>(handle_.socket());
handle_           447 net/http/http_proxy_client_socket_pool_unittest.cc             handle_.Init("a", CreateTunnelParams(), MEDIUM,
handle_           462 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           465 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           466 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           470 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           471 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           487 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           490 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           491 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           495 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           496 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           512 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           515 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           516 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           520 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           521 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           550 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           553 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           554 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           564 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           565 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           589 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           592 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           593 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           629 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           632 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           633 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           640 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           641 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           691 net/http/http_proxy_client_socket_pool_unittest.cc   int rv = handle_.Init("a", CreateTunnelParams(), LOW, callback_.callback(),
handle_           694 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.is_initialized());
handle_           695 net/http/http_proxy_client_socket_pool_unittest.cc   EXPECT_FALSE(handle_.socket());
handle_           704 net/http/http_proxy_client_socket_pool_unittest.cc     EXPECT_FALSE(handle_.is_initialized());
handle_           705 net/http/http_proxy_client_socket_pool_unittest.cc     EXPECT_FALSE(handle_.socket());
handle_           709 net/http/http_proxy_client_socket_pool_unittest.cc     EXPECT_TRUE(handle_.is_initialized());
handle_           710 net/http/http_proxy_client_socket_pool_unittest.cc     ASSERT_TRUE(handle_.socket());
handle_           713 net/http/http_proxy_client_socket_pool_unittest.cc         static_cast<ProxyClientSocket*>(handle_.socket());
handle_           137 net/socket/client_socket_pool_base.cc     : handle_(handle),
handle_           179 net/socket/client_socket_pool_base.h     ClientSocketHandle* handle() const { return handle_; }
handle_           187 net/socket/client_socket_pool_base.h     ClientSocketHandle* const handle_;
handle_          1467 net/socket/client_socket_pool_base_unittest.cc       : handle_(handle),
handle_          1490 net/socket/client_socket_pool_base_unittest.cc       handle_->socket()->Disconnect();
handle_          1491 net/socket/client_socket_pool_base_unittest.cc       handle_->Reset();
handle_          1504 net/socket/client_socket_pool_base_unittest.cc       int rv = handle_->Init("a",
handle_          1537 net/socket/client_socket_pool_base_unittest.cc   ClientSocketHandle* const handle_;
handle_          2596 net/socket/client_socket_pool_base_unittest.cc   ClientSocketHandle* handle() { return &handle_; }
handle_          2604 net/socket/client_socket_pool_base_unittest.cc       handle_.Reset();
handle_          2616 net/socket/client_socket_pool_base_unittest.cc   ClientSocketHandle handle_;
handle_          2731 net/socket/client_socket_pool_base_unittest.cc               handle_.Init(group_name_,
handle_          2742 net/socket/client_socket_pool_base_unittest.cc   ClientSocketHandle handle_;
handle_          3802 net/socket/client_socket_pool_base_unittest.cc     return handle_.Init(group_name_, params, DEFAULT_PRIORITY,
handle_          3809 net/socket/client_socket_pool_base_unittest.cc     return handle_.Init(group_name_, params, MAXIMUM_PRIORITY,
handle_          3814 net/socket/client_socket_pool_base_unittest.cc     if (!handle_.is_initialized() || !can_release_connection_) {
handle_          3817 net/socket/client_socket_pool_base_unittest.cc     handle_.socket()->Disconnect();
handle_          3818 net/socket/client_socket_pool_base_unittest.cc     handle_.Reset();
handle_          3830 net/socket/client_socket_pool_base_unittest.cc   ClientSocketHandle handle_;
handle_          1689 net/socket/socket_test_util.cc       handle_(handle),
handle_          1707 net/socket/socket_test_util.cc   if (handle != handle_)
handle_          1710 net/socket/socket_test_util.cc   handle_ = NULL;
handle_          1719 net/socket/socket_test_util.cc     handle_->SetSocket(socket_.Pass());
handle_          1729 net/socket/socket_test_util.cc     handle_->set_connect_timing(connect_timing);
handle_          1734 net/socket/socket_test_util.cc   handle_ = NULL;
handle_          1047 net/socket/socket_test_util.h   ClientSocketHandle* handle() { return &handle_; }
handle_          1054 net/socket/socket_test_util.h   ClientSocketHandle handle_;
handle_          1154 net/socket/socket_test_util.h     ClientSocketHandle* handle_;
handle_           857 net/socket/transport_client_socket_pool_unittest.cc       : handle_(handle),
handle_           876 net/socket/transport_client_socket_pool_unittest.cc       handle_->socket()->Disconnect();
handle_           877 net/socket/transport_client_socket_pool_unittest.cc       handle_->Reset();
handle_           887 net/socket/transport_client_socket_pool_unittest.cc       int rv = handle_->Init("a", dest, LOWEST, callback(), pool_,
handle_           893 net/socket/transport_client_socket_pool_unittest.cc   ClientSocketHandle* const handle_;
handle_            16 ppapi/cpp/private/pass_file_handle.cc     : handle_(PP_kInvalidFileHandle) {
handle_            20 ppapi/cpp/private/pass_file_handle.cc     : handle_(handle) {
handle_            24 ppapi/cpp/private/pass_file_handle.cc     : handle_(handle.Release()) {
handle_            32 ppapi/cpp/private/pass_file_handle.cc   PP_FileHandle released = handle_;
handle_            33 ppapi/cpp/private/pass_file_handle.cc   handle_ = PP_kInvalidFileHandle;
handle_            38 ppapi/cpp/private/pass_file_handle.cc   if (handle_ != PP_kInvalidFileHandle) {
handle_            40 ppapi/cpp/private/pass_file_handle.cc     CloseHandle(handle_);
handle_            42 ppapi/cpp/private/pass_file_handle.cc     close(handle_);
handle_            44 ppapi/cpp/private/pass_file_handle.cc     handle_ = PP_kInvalidFileHandle;
handle_            43 ppapi/cpp/private/pass_file_handle.h       : handle_(ref.handle) {
handle_            55 ppapi/cpp/private/pass_file_handle.h   PP_FileHandle handle_;
handle_            50 ppapi/examples/crxfs/crxfs.cc   pp::InstanceHandle handle_;
handle_            87 ppapi/examples/crxfs/crxfs.cc   file_io_ = pp::FileIO(handle_);
handle_            36 rlz/lib/financial_ping.cc   InternetHandle(HINTERNET handle) { handle_ = handle; }
handle_            37 rlz/lib/financial_ping.cc   ~InternetHandle() { if (handle_) InternetCloseHandle(handle_); }
handle_            38 rlz/lib/financial_ping.cc   operator HINTERNET() const { return handle_; }
handle_            39 rlz/lib/financial_ping.cc   bool operator!() const { return (handle_ == NULL); }
handle_            42 rlz/lib/financial_ping.cc   HINTERNET handle_;
handle_            18 sync/notifier/mock_ack_handler.cc   syncer::AckHandle handle_;
handle_            22 sync/notifier/mock_ack_handler.cc   : handle_(handle) {}
handle_            26 sync/notifier/mock_ack_handler.cc   return handle_.Equals(invalidation.ack_handle());
handle_           241 ui/gfx/native_widget_types.h   GLSurfaceHandle(PluginWindowHandle handle_, SurfaceType transport_)
handle_           242 ui/gfx/native_widget_types.h       : handle(handle_),
handle_            87 ui/gfx/ozone/dri/dri_skbitmap.cc     handle_(0),
handle_            25 ui/gfx/ozone/dri/dri_skbitmap.h   void set_handle(uint32_t handle) { handle_ = handle; };
handle_            27 ui/gfx/ozone/dri/dri_skbitmap.h   uint32_t get_handle() const { return handle_; };
handle_            46 ui/gfx/ozone/dri/dri_skbitmap.h   uint32_t handle_;
handle_            95 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc       : handle_(handle.Pass()),
handle_            96 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc         path_(handle_->platform_path()),
handle_            97 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc         max_written_offset_(handle_->GetEstimatedFileSize()),
handle_           103 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc     if (handle_)
handle_           139 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc     handle_->UpdateMaxWrittenOffset(max_written_offset_);
handle_           140 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc     handle_->AddAppendModeWriteAmount(append_mode_write_amount_);
handle_           141 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc     max_written_offset_ = handle_->GetEstimatedFileSize();
handle_           147 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc     handle_.reset();
handle_           151 webkit/browser/fileapi/quota/quota_reservation_manager_unittest.cc   scoped_ptr<OpenFileHandle> handle_;