Home
last modified time | relevance | path

Searched refs:async_ (Results 1 – 15 of 15) sorted by relevance

/external/libchrome/base/files/
Dfile.cc29 async_(false) { in File()
34 : error_details_(FILE_OK), created_(false), async_(false) { in File()
45 async_(async) { in File()
54 async_(false) { in File()
62 async_(other.async_) {} in File()
75 async_ = other.async_; in operator =()
Dfile.h302 bool async() const { return async_; } in async()
374 bool async_; variable
Dfile_posix.cc524 async_ = ((flags & FLAG_ASYNC) == FLAG_ASYNC); in DoInitialize()
/external/tensorflow/tensorflow/core/common_runtime/eager/
Dcopy_to_device_node.h36 async_(async), in CopyToDeviceNode()
38 if (async_) { in CopyToDeviceNode()
45 if (async_) { in ~CopyToDeviceNode()
56 if (!async_ && mirror_) { in Run()
86 bool async_; variable
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/
Dspawnbase.py240 def expect(self, pattern, timeout=-1, searchwindowsize=-1, async_=False, **kw): argument
335 async_ = kw.pop('async')
341 timeout, searchwindowsize, async_)
344 async_=False, **kw): argument
360 async_ = kw.pop('async')
365 if async_:
372 async_=False, **kw): argument
392 async_ = kw.pop('async')
414 if async_:
/external/webrtc/p2p/base/
Dfake_packet_transport.h36 void SetAsync(bool async) { async_ = async; } in SetAsync()
73 if (async_) { in SendPacket()
145 bool async_ = false; variable
Dfake_ice_transport.h45 void SetAsync(bool async) { async_ = async; } in SetAsync()
241 if (async_) { in SendPacket()
315 bool async_ = false; variable
/external/python/cpython3/Lib/test/
Dtest_compile.py805 def check_stack_size(self, snippet, async_=False): argument
809 if async_:
1048 self.check_stack_size(snippet, async_=True)
1055 self.check_stack_size(snippet, async_=True)
1064 self.check_stack_size(snippet, async_=True)
1079 self.check_stack_size(snippet, async_=True)
1089 self.check_stack_size(snippet, async_=True)
Dtest_minidom.py63 self.assertFalse(doc.async_)
64 self.assertFalse(Document.async_)
/external/libbrillo/brillo/http/
Dhttp_transport_fake.h79 void SetAsyncMode(bool async) { async_ = async; } in SetAsyncMode()
122 bool async_{false};
Dhttp_transport_fake.cc69 if (!async_) { in RunCallbackAsync()
/external/webrtc/rtc_base/
Dvirtual_socket_server.cc103 async_(async), in VirtualSocket()
112 RTC_DCHECK(async_ || in VirtualSocket()
276 if (async_) { in RecvFrom()
340 VirtualSocket* socket = new VirtualSocket(server_, AF_INET, type_, async_); in Accept()
396 if (async_) { in OnMessage()
404 if (async_) { in OnMessage()
421 if (async_) { in OnMessage()
472 if (async_ && notify) { in CompleteConnect()
Dvirtual_socket_server.h367 bool async_; variable
/external/grpc-grpc/examples/cpp/helloworld/
DCMakeLists.txt102 # Targets greeter_[async_](client|server)
/external/python/cpython3/Lib/xml/dom/
Dxmlbuilder.py337 async_ = False variable in DocumentLS