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

/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/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 Dkeystore.cpp952 static ResponseCode insert(KeyStore* keyStore, int, uid_t uid, Value* keyName, Value* val, function
1341 {insert, CommandCodes[INSERT], STATE_NO_ERROR, P_INSERT, {KEY_SIZE, VALUE_SIZE, 0}},

Completed in 86 milliseconds