Searched defs:evFlag (Results 1 - 2 of 2) sorted by path

/system/libfmq/
H A DEventFlag.cpp39 EventFlag* evFlag = new (std::nothrow) EventFlag(fd, offset, &status); local
40 if (evFlag != nullptr) {
42 *flag = evFlag;
44 delete evFlag;
60 EventFlag* evFlag = new (std::nothrow) EventFlag(fwAddr, &status); local
61 if (evFlag != nullptr) {
63 *flag = evFlag;
65 delete evFlag;
244 status_t EventFlag::deleteEventFlag(EventFlag** evFlag) { argument
245 if (evFlag
[all...]
/system/libfmq/include/fmq/
H A DMessageQueue.h124 * If 'evFlag' is nullptr, it is checked whether there is an EventFlag object
127 * The application code must ensure that 'evFlag' used by the
132 * - If 'evFlag' is nullptr and the FMQ does not own an EventFlag object.
151 * @param evFlag The EventFlag object to be used for blocking. If nullptr,
159 android::hardware::EventFlag* evFlag = nullptr);
177 * If 'evFlag' is nullptr, it is checked whether there is an EventFlag object
180 * The application code must ensure that 'evFlag' used by the
185 * -If 'evFlag' is nullptr and the FMQ does not own an EventFlag object.
201 * @param evFlag The EventFlag object to be used for blocking.
207 android::hardware::EventFlag* evFlag
726 writeBlocking(const T* data, size_t count, uint32_t readNotification, uint32_t writeNotification, int64_t timeOutNanos, android::hardware::EventFlag* evFlag) argument
844 readBlocking(T* data, size_t count, uint32_t readNotification, uint32_t writeNotification, int64_t timeOutNanos, android::hardware::EventFlag* evFlag) argument
[all...]

Completed in 79 milliseconds