Searched defs:insert (Results 1 - 7 of 7) sorted by relevance

/system/core/libmemunreachable/
H A DLinkedList.h28 void insert(LinkedList<T>& node) { function in class:LinkedList
/system/core/libutils/
H A DString16.cpp265 status_t String16::insert(size_t pos, const char16_t* chrs) function in class:android::String16
267 return insert(pos, chrs, strlen16(chrs));
270 status_t String16::insert(size_t pos, const char16_t* chrs, size_t len) function in class:android::String16
/system/core/include/sysutils/
H A DList.h169 insert(begin(), src.begin(), src.end());
208 void push_front(const T& val) { insert(begin(), val); }
209 void push_back(const T& val) { insert(end(), val); }
211 /* insert before the current node; returns iterator at new node */
212 iterator insert(iterator posn, const T& val) function in class:android::sysutils::List
222 /* insert a range of elements before the current node */
223 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::sysutils::List
225 insert(posn, *first);
327 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/core/include/utils/
H A DList.h168 insert(begin(), src.begin(), src.end());
207 void push_front(const T& val) { insert(begin(), val); }
208 void push_back(const T& val) { insert(end(), val); }
210 /* insert before the current node; returns iterator at new node */
211 iterator insert(iterator posn, const T& val) function in class:android::List
221 /* insert a range of elements before the current node */
222 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::List
224 insert(posn, *first);
326 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/keymaster/
H A DList.h168 insert(begin(), src.begin(), src.end());
207 void push_front(const T& val) { insert(begin(), val); }
208 void push_back(const T& val) { insert(end(), val); }
210 /* insert before the current node; returns iterator at new node */
211 iterator insert(iterator posn, const T& val) function in class:android::List
221 /* insert a range of elements before the current node */
222 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::List
224 insert(posn, *first);
326 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/security/keystore/
H A DIKeystoreService.cpp517 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid, function in class:android::BpKeystoreService
1404 int32_t ret = insert(name, (const uint8_t*) in, (size_t) inSize, uid, flags);
H A Dkey_store_service.cpp90 int32_t KeyStoreService::insert(const String16& name, const uint8_t* item, size_t itemLength, function in class:android::KeyStoreService

Completed in 5333 milliseconds