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

/system/core/libutils/
H A DString16.cpp259 status_t String16::insert(size_t pos, const char16_t* chrs) function in class:android::String16
261 return insert(pos, chrs, strlen16(chrs));
264 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/core/logd/
H A DLogStatistics.cpp143 // insert if the gone entry.
144 bool insert = (last != it) && (p->getPid() == p->gone); local
146 if (insert) {
147 Pids.insert(last, p);
198 Pids.insert(lt, n);
290 Uids.insert(last, u);
297 Uids.insert(last, u);
327 Uids.insert(lt, n);
618 pids.insert(q, p);
/system/netd/server/
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
688 int32_t ret = insert(name, (const uint8_t*) in, (size_t) inSize, uid, flags);
H A Dkeystore.cpp173 "insert",
576 ALOGD("couldn't insert encrypted blob while not unlocked");
1632 int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int targetUid, function in class:android::KeyStoreProxy
1637 ALOGW("permission denied for %d: insert", callingUid);

Completed in 165 milliseconds