Searched refs:remove (Results 1 - 25 of 71) sorted by relevance

123

/system/chre/util/include/chre/util/
H A Dfixed_size_blocking_queue.h72 bool remove(size_t index);
H A Dfixed_size_blocking_queue_impl.h77 bool FixedSizeBlockingQueue<ElementType, kSize>::remove(size_t index) { function in class:chre::FixedSizeBlockingQueue
79 return mQueue.remove(index);
H A Dpriority_queue.h145 * @param index The index to remove an element at.
147 void remove(size_t index);
H A Darray_queue.h136 bool remove(size_t index);
/system/netd/server/
H A DUidRanges.h41 void remove(const UidRanges& other);
H A DUidRanges.cpp100 void UidRanges::remove(const UidRanges& other) { function in class:android::net::UidRanges
H A DVirtualNetwork.cpp90 ALOGE("failed to remove users on interface %s of netId %u", interface.c_str(), mNetId);
94 mUidRanges.remove(uidRanges);
121 ALOGE("failed to remove interface %s from VPN netId %u", interface.c_str(), mNetId);
/system/nfc/src/adaptation/
H A Dlibmain.cc177 remove(getFilenameForBlock(DH_NV_BLOCK).c_str());
178 remove(getFilenameForBlock(HC_F2_NV_BLOCK).c_str());
179 remove(getFilenameForBlock(HC_F3_NV_BLOCK).c_str());
180 remove(getFilenameForBlock(HC_F4_NV_BLOCK).c_str());
181 remove(getFilenameForBlock(HC_F5_NV_BLOCK).c_str());
/system/extras/simpleperf/scripts/
H A Dtest.py87 remove(testdata_path)
151 remove("binary_cache")
152 remove("annotated_files")
153 remove("perf.data")
154 remove("report.txt")
155 remove("pprof.profile")
252 remove("binary_cache")
260 remove("binary_cache")
276 remove("annotated_files")
282 remove("binary_cach
[all...]
H A Dbinary_cache_builder.py174 os.remove(binary_cache_file)
223 os.remove(file)
/system/timezone/
H A Ddownload-iana-data.py102 os.remove(local_iana_tar_file)
106 os.remove(local_signature_file)
/system/chre/core/include/chre/core/
H A Dsensor_request_manager.h174 * @param removeIndex The index to remove the request from.
178 * @return true if the remove operation was successful.
180 bool remove(size_t removeIndex, bool *requestChanged);
/system/core/libmemunreachable/
H A DLinkedList.h35 void remove() { function in class:android::LinkedList
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
H A DTreeNode.java86 * identify the child node to remove. The parent of the node to be removed is set to null.
95 children.remove(i);
/system/ca-certificates/google/
H A Dextract_from_pem.py72 os.remove(os.path.join(args.output_dir, existing_file))
/system/chre/util/tests/
H A Dpriority_queue_test.cc137 EXPECT_DEATH(q.remove(0), "");
145 q.remove(0);
150 q.remove(1);
H A Darray_queue_test.cc180 EXPECT_FALSE(q.remove(0));
187 q.remove(0);
191 q.remove(1);
362 q.remove(1);
/system/core/include/utils/
H A DLruCache.h51 bool remove(const TKey& key);
220 bool LruCache<TKey, TValue>::remove(const TKey& key) { function in class:android::LruCache
240 return remove(mOldest->key);
H A DSortedVector.h120 ssize_t remove(const TYPE&);
122 //! remove several items
124 //! remove one item
245 ssize_t SortedVector<TYPE>::remove(const TYPE& item) { function in class:android::SortedVector
246 return SortedVectorImpl::remove(&item);
H A DKeyedVector.h91 * remove items
177 mVector.remove(pair);
192 return mVector.remove(key_value_pair_t<KEY,VALUE>(key));
/system/core/libutils/include/utils/
H A DLruCache.h51 bool remove(const TKey& key);
220 bool LruCache<TKey, TValue>::remove(const TKey& key) { function in class:android::LruCache
240 return remove(mOldest->key);
H A DSortedVector.h120 ssize_t remove(const TYPE&);
122 //! remove several items
124 //! remove one item
245 ssize_t SortedVector<TYPE>::remove(const TYPE& item) { function in class:android::SortedVector
246 return SortedVectorImpl::remove(&item);
H A DKeyedVector.h91 * remove items
177 mVector.remove(pair);
192 return mVector.remove(key_value_pair_t<KEY,VALUE>(key));
/system/core/libutils/tests/
H A DLruCache_test.cpp395 cache.remove(1);
411 cache.remove(2);
427 cache.remove(3);
443 cache.remove(7);
/system/bt/hci/src/
H A Dbtsnoop.cc168 remove(log_path);
169 remove(last_log_path);

Completed in 8610 milliseconds

123