Searched refs:insert (Results 1 - 5 of 5) 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
H A DBandwidthController.cpp190 fullCmd.insert(0, " ");
191 fullCmd.insert(0, iptVer == IptIpV4 ? IPTABLES_PATH : IP6TABLES_PATH);
H A DCommandListener.cpp1258 extraProcessingInfo.insert(0, "Failed to get tethering stats.\n");
/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 326 milliseconds