HomeSort by relevance Sort by last modified time
    Searched defs:handle_ (Results 1 - 17 of 17) sorted by null

  /external/v8/src/
oprofile-agent.h 56 static bool is_enabled() { return handle_ != NULL; }
59 static op_agent_t handle_; member in class:v8::internal::OProfileAgent
oprofile-agent.cc 36 op_agent_t OProfileAgent::handle_ = NULL; member in class:v8::internal::OProfileAgent
43 if (handle_ != NULL) return false;
49 handle_ = op_open_agent();
50 return (handle_ != NULL);
66 if (handle_ != NULL) {
67 op_close_agent(handle_);
76 if (handle_ == NULL) return;
77 op_write_native_code(handle_, name, (uint64_t)ptr, ptr, size);
85 if (handle_ != NULL) {
99 if (handle_ != NULL)
    [all...]
ast.h 724 explicit Literal(Handle<Object> handle) : handle_(handle) { }
733 return handle_.is_identical_to(other->handle_);
737 if (handle_->IsSymbol()) {
739 return !String::cast(*handle_)->AsArrayIndex(&ignored);
748 bool IsNull() const { return handle_.is_identical_to(Factory::null_value()); }
749 bool IsTrue() const { return handle_.is_identical_to(Factory::true_value()); }
751 return handle_.is_identical_to(Factory::false_value());
754 Handle<Object> handle() const { return handle_; }
757 Handle<Object> handle_; member in class:v8::internal::Literal
    [all...]
  /external/chromium/base/
scoped_handle.h 19 : handle_(NULL) { }
22 : handle_(handle) { }
29 if (handle_) {
30 fclose(handle_);
31 handle_ = NULL;
35 FILE* get() const { return handle_; }
38 FILE* temp = handle_;
39 handle_ = NULL;
45 handle_ = newhandle;
49 FILE* handle_; member in class:ScopedStdioHandle
    [all...]
sync_socket.h 29 explicit SyncSocket(Handle handle) : handle_(handle) { }
62 Handle handle() const { return handle_; }
65 Handle handle_; member in class:base::SyncSocket
directory_watcher_win.cc 17 DirectoryWatcherImpl() : delegate_(NULL), handle_(INVALID_HANDLE_VALUE) {}
33 HANDLE handle_; member in class:__anon2310::DirectoryWatcherImpl
34 // ObjectWatcher to watch handle_ for events.
41 if (handle_ != INVALID_HANDLE_VALUE) {
43 FindCloseChangeNotification(handle_);
52 handle_ = FindFirstChangeNotification(
57 if (handle_ == INVALID_HANDLE_VALUE)
62 watcher_.StartWatching(handle_, this);
68 DCHECK(object == handle_);
waitable_event.h 84 HANDLE handle() const { return handle_; }
133 HANDLE handle_; member in class:base::WaitableEvent
condition_variable.h 105 // The list container is an element with NULL as its handle_ value.
106 // The actual list elements have a non-zero handle_ value.
141 HANDLE handle_; member in class:ConditionVariable::Event
watchdog.h 76 PlatformThreadHandle handle_; member in class:Watchdog
weak_ptr.h 68 Flag(Flag** handle) : handle_(handle) {
72 if (handle_)
73 *handle_ = NULL;
86 void Invalidate() { handle_ = NULL; }
87 bool is_valid() const { return handle_ != NULL; }
90 Flag** handle_; member in class:base::internal::WeakReference::Flag
scoped_handle_win.h 31 ScopedHandle() : handle_(NULL) {
34 explicit ScopedHandle(HANDLE h) : handle_(NULL) {
45 return handle_ != NULL;
53 handle_ = new_handle;
57 return handle_;
60 operator HANDLE() { return handle_; }
64 HANDLE h = handle_;
65 handle_ = NULL;
70 if (handle_) {
71 if (!::CloseHandle(handle_)) {
79 HANDLE handle_; member in class:ScopedHandle
104 HANDLE handle_; member in class:ScopedFindFileHandle
    [all...]
  /hardware/ril/mock-ril/src/cpp/
node_object_wrap.h 40 if (!handle_.IsEmpty()) {
41 assert(handle_.IsNearDeath());
42 handle_->SetInternalField(0, v8::Undefined());
43 handle_.Dispose();
44 handle_.Clear();
57 v8::Persistent<v8::Object> handle_; // ro member in class:ObjectWrap
62 assert(handle_.IsEmpty());
64 handle_ = v8::Persistent<v8::Object>::New(handle);
65 handle_->SetInternalField(0, v8::External::New(this));
71 handle_.MakeWeak(this, WeakCallback)
    [all...]
  /external/chromium/net/socket/
tcp_client_socket_pool_unittest.cc 502 : handle_(handle),
513 handle_->socket()->Disconnect();
514 handle_->Reset();
521 int rv = handle_->Init(
533 ClientSocketHandle* const handle_; member in class:net::__anon2730::RequestSocketCallback
client_socket_pool_base.h 131 : handle_(handle), callback_(callback), priority_(priority),
136 ClientSocketHandle* handle() const { return handle_; }
142 ClientSocketHandle* const handle_; member in class:net::internal::ClientSocketPoolBaseHelper::Request
client_socket_pool_base_unittest.cc 904 : handle_(handle),
919 handle_->socket()->Disconnect();
920 handle_->Reset();
963 ClientSocketHandle* const handle_; member in class:net::__anon2716::RequestSocketCallback
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 1350 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 1178 HANDLE handle_; member in class:testing::internal::AutoHandle
    [all...]

Completed in 1096 milliseconds