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

/system/core/libutils/
H A DString16.cpp262 status_t String16::insert(size_t pos, const char16_t* chrs) function in class:android::String16
264 return insert(pos, chrs, strlen16(chrs));
267 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/netd/
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::netd::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::netd::List
225 insert(posn, *first);
327 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/security/keystore/
H A DIKeystoreService.cpp107 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid, function in class:android::BpKeystoreService
629 int32_t ret = insert(name, (const uint8_t*) in, (size_t) inSize, uid, flags);
H A Dkeystore.cpp501 ALOGD("couldn't insert encrypted blob while not unlocked");
1475 int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int targetUid, function in class:android::KeyStoreProxy
1479 ALOGW("permission denied for %d: insert", callingUid);

Completed in 2945 milliseconds