Home
last modified time | relevance | path

Searched defs:Alarm (Results 1 – 5 of 5) sorted by relevance

/third_party/grpc/include/grpcpp/
Dalarm_impl.h51 Alarm(::grpc::CompletionQueue* cq, const T& deadline, void* tag) : Alarm() { in Alarm() function
69 Alarm(Alarm&& rhs) : alarm_(rhs.alarm_) { rhs.alarm_ = nullptr; } in Alarm() function
Dalarm.h51 Alarm(::grpc::CompletionQueue* cq, const T& deadline, void* tag) : Alarm() { in Alarm() function
69 Alarm(Alarm&& rhs) noexcept : alarm_(rhs.alarm_) { rhs.alarm_ = nullptr; } in Alarm() function
/third_party/grpc/src/cpp/common/
Dalarm.cc131 Alarm::Alarm() : alarm_(new internal::AlarmImpl()) { in Alarm() function in grpc::Alarm
/third_party/skia/third_party/externals/oboe/include/oboe/
DDefinitions.h282 Alarm = 4, // AAUDIO_USAGE_ALARM enumerator
/third_party/python/Lib/test/
Dtest_socket.py5284 class Alarm(Exception): class