Home
last modified time | relevance | path

Searched refs:async_ (Results 1 – 12 of 12) 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/webrtc/webrtc/p2p/base/
Dfaketransportcontroller.h68 void SetAsync(bool async) { async_ = async; } in SetAsync()
208 if (async_) { in SendPacket()
319 bool async_ = false; variable
363 void SetAsync(bool async) { async_ = async; } in SetAsync()
420 channel->SetAsync(async_); in CreateTransportChannel()
454 bool async_ = false; variable
/external/python/cpython3/Lib/test/
Dtest_compile.py735 def check_stack_size(self, snippet, async_=False): argument
739 if async_:
976 self.check_stack_size(snippet, async_=True)
983 self.check_stack_size(snippet, async_=True)
992 self.check_stack_size(snippet, async_=True)
1007 self.check_stack_size(snippet, async_=True)
1017 self.check_stack_size(snippet, async_=True)
Dtest_minidom.py62 self.assertFalse(doc.async_)
63 self.assertFalse(Document.async_)
/external/webrtc/webrtc/base/
Dvirtualsocketserver.cc103 async_(async), in VirtualSocket()
113 ASSERT(async_ || (type_ != SOCK_STREAM)); // We only support async streams in VirtualSocket()
274 if (async_) { in RecvFrom()
330 VirtualSocket* socket = new VirtualSocket(server_, AF_INET, type_, async_); in Accept()
394 if (async_) { in OnMessage()
402 if (async_) { in OnMessage()
418 if (async_) { in OnMessage()
465 if (async_ && notify) { in CompleteConnect()
Dvirtualsocketserver.h314 bool async_; variable
/external/libbrillo/brillo/http/
Dhttp_transport_fake.h76 void SetAsyncMode(bool async) { async_ = async; } in SetAsyncMode()
112 bool async_{false};
Dhttp_transport_fake.cc69 if (!async_) { in RunCallbackAsync()
/external/grpc-grpc/examples/cpp/helloworld/
DCMakeLists.txt102 # Targets greeter_[async_](client|server)
/external/python/cpython3/Lib/xml/dom/
Dxmlbuilder.py338 async_ = False variable in DocumentLS