/chre-3.4.0/util/tests/ |
D | priority_queue_test.cc | 52 EXPECT_TRUE(q.push(0)); in TEST() 53 EXPECT_TRUE(q.push(2)); in TEST() 54 EXPECT_TRUE(q.push(3)); in TEST() 55 EXPECT_TRUE(q.push(1)); in TEST() 57 EXPECT_TRUE(q.push(4)); in TEST() 63 q.push(1); in TEST() 65 q.push(2); in TEST() 74 q.push(1); in TEST() 76 q.push(2); in TEST() 87 q.push(1); in TEST() [all …]
|
D | array_queue_test.cc | 48 EXPECT_TRUE(q.push(1)); in TEST() 49 EXPECT_TRUE(q.push(2)); in TEST() 51 EXPECT_TRUE(q.push(3)); in TEST() 56 EXPECT_TRUE(q.push(0)); in TEST() 57 EXPECT_TRUE(q.push(1)); in TEST() 58 EXPECT_TRUE(q.push(2)); in TEST() 64 EXPECT_TRUE(q.push(3)); in TEST() 75 EXPECT_TRUE(q.push(4)); in TEST() 76 EXPECT_TRUE(q.push(5)); in TEST() 77 EXPECT_TRUE(q.push(6)); in TEST() [all …]
|
D | blocking_queue_test.cc | 34 ASSERT_TRUE(blockingQueue.push(0x1337)); in TEST() 35 ASSERT_TRUE(blockingQueue.push(0xcafe)); in TEST() 48 ASSERT_TRUE(blockingQueue.push(std::move(ptr))); in TEST()
|
/chre-3.4.0/core/ |
D | event_ref_queue.cc | 29 bool EventRefQueue::push(Event *event) { in push() function in chre::EventRefQueue 32 bool pushed = mQueue.push(event); in push()
|
D | event_loop.cc | 284 if (event == nullptr || !mEvents.push(event)) { in postSystemEvent() 387 success = mEvents.push(event); in allocateAndPostEvent()
|
D | timer_pool.cc | 181 mTimerRequests.push(timerRequest); in insertTimerRequestLocked()
|
D | wifi_request_manager.cc | 327 bool success = mPendingScanMonitorRequests.push(scanMonitorStateTransition); in addScanMonitorRequestToQueue()
|
D | gnss_manager.cc | 438 bool success = mStateTransitions.push(stateTransition); in addRequestToQueue()
|
/chre-3.4.0/util/include/chre/util/ |
D | fixed_size_blocking_queue_impl.h | 26 bool FixedSizeBlockingQueue<ElementType, kSize>::push( in push() function 31 success = mQueue.push(element); in push() 40 bool FixedSizeBlockingQueue<ElementType, kSize>::push(ElementType &&element) { in push() function 44 success = mQueue.push(std::move(element)); in push()
|
D | fixed_size_blocking_queue.h | 44 bool push(const ElementType &element); 45 bool push(ElementType &&element);
|
D | array_queue.h | 109 bool push(const ElementType &element); 110 bool push(ElementType &&element);
|
D | array_queue_impl.h | 86 bool ArrayQueue<ElementType, kCapacity>::push(const ElementType &element) { in push() function 95 bool ArrayQueue<ElementType, kCapacity>::push(ElementType &&element) { in push() function 108 push(element); in kick_push() 116 push(element); in kick_push()
|
D | priority_queue.h | 79 bool push(const ElementType &element);
|
D | priority_queue_impl.h | 54 bool PriorityQueue<ElementType, CompareFunction>::push( in push() function
|
/chre-3.4.0/ |
D | load_android_sim.sh | 19 adb push out/google_arm64_android_debug/libchre /system/bin/chre 20 adb push variant/android/chre-stub /vendor/bin/chre
|
/chre-3.4.0/core/include/chre/core/ |
D | event_ref_queue.h | 47 bool push(Event *event);
|
D | nanoapp.h | 125 mEventQueue.push(event); in postEvent()
|
/chre-3.4.0/build/sys_support/qcom/ |
D | uimg_dl_ver.c | 52 #pragma clang diagnostic push
|
/chre-3.4.0/platform/linux/ |
D | platform_log.cc | 77 mLogQueue.push(formattedStr); in logVa()
|
/chre-3.4.0/chpp/include/chpp/ |
D | macros.h | 152 #define CHPP_PACKED_START __pragma(pack(push, 1))
|
/chre-3.4.0/external/kiss_fft/ |
D | kiss_fftr.c | 20 #pragma clang diagnostic push
|
D | kiss_fft.c | 23 #pragma clang diagnostic push
|
/chre-3.4.0/external/flatbuffers/include/flatbuffers/ |
D | base.h | 315 #pragma warning(push)
|
/chre-3.4.0/host/common/ |
D | daemon_base.cc | 112 mPreloadedNanoappPendingTransactionIds.push(transactionId); in sendNanoappLoad()
|
/chre-3.4.0/platform/slpi/ |
D | host_link.cc | 162 bool success = gOutboundQueue.push(message); in enqueueMessage()
|