Searched defs:push (Results 1 - 9 of 9) sorted by relevance

/system/chre/core/
H A Devent_ref_queue.cc28 bool EventRefQueue::push(Event *event) { function in class:chre::EventRefQueue
31 bool pushed = mQueue.push(event);
/system/chre/util/include/chre/util/
H A Dfixed_size_blocking_queue_impl.h26 bool FixedSizeBlockingQueue<ElementType, kSize>::push( function in class:chre::FixedSizeBlockingQueue
31 success = mQueue.push(element);
40 bool FixedSizeBlockingQueue<ElementType, kSize>::push(ElementType&& element) { function in class:chre::FixedSizeBlockingQueue
44 success = mQueue.push(std::move(element));
H A Dpriority_queue_impl.h52 bool PriorityQueue<ElementType, CompareFunction>::push( function in class:chre::PriorityQueue
/system/libhidl/base/
H A DTaskRunner.cpp37 mQueue->push(nullptr);
41 bool TaskRunner::push(const Task &t) { function in class:android::hardware::details::TaskRunner
65 return this->mQueue->push(t);
H A DSynchronizedQueue.h42 bool push(const T& item);
86 bool SynchronizedQueue<T>::push(const T &item) { function in class:android::hardware::details::SynchronizedQueue
91 mQueue.push(item);
/system/core/libutils/
H A DVectorImpl.cpp234 void VectorImpl::push() function in class:android::VectorImpl
236 push(0);
239 void VectorImpl::push(const void* item) function in class:android::VectorImpl
/system/core/include/utils/
H A DVector.h160 inline void push();
162 void push(const TYPE& item);
163 //! same as push() but returns the index the item was added at (or an error)
165 //! same as push() but returns the index the item was added at (or an error)
342 void Vector<TYPE>::push(const TYPE& item) { function in class:android::Vector
343 return VectorImpl::push(&item);
367 void Vector<TYPE>::push() { function in class:android::Vector
368 VectorImpl::push();
/system/core/libutils/include/utils/
H A DVector.h160 inline void push();
162 void push(const TYPE& item);
163 //! same as push() but returns the index the item was added at (or an error)
165 //! same as push() but returns the index the item was added at (or an error)
342 void Vector<TYPE>::push(const TYPE& item) { function in class:android::Vector
343 return VectorImpl::push(&item);
367 void Vector<TYPE>::push() { function in class:android::Vector
368 VectorImpl::push();
/system/core/adb/
H A Dfile_sync_client.cpp97 push, member in class:TransferDirection
181 const char* direction_str = (direction == TransferDirection::push) ? "pushed" : "pulled";
914 sc.Println("would push: %s -> %s", ci.lpath.c_str(), ci.rpath.c_str());
926 sc.ReportTransferRate(lpath, TransferDirection::push);
947 sc.Error("stat failed when trying to push to %s: %s", dst, strerror(errno));
1017 sc.ReportTransferRate(src_path, TransferDirection::push);
1020 sc.ReportOverallTransferRate(TransferDirection::push);
1264 sc.ReportOverallTransferRate(TransferDirection::push);

Completed in 214 milliseconds