Searched defs:add (Results 1 - 25 of 35) sorted by relevance

12

/system/netd/server/
H A DIdletimerControllerTest.cpp66 const std::vector<std::string> makeAddRemoveCommands(bool add) { argument
67 const char *op = add ? "-A" : "-D";
H A DUidRanges.cpp95 void UidRanges::add(const UidRanges& other) { function in class:android::net::UidRanges
H A DVirtualNetwork.cpp49 int VirtualNetwork::maybeCloseSockets(bool add, const UidRanges& uidRanges, argument
62 add ? "adding" : "removing", uidRanges.toString().c_str(), mNetId, strerror(-ret));
75 ALOGE("failed to add users on interface %s of netId %u", interface.c_str(), mNetId);
79 mUidRanges.add(uidRanges);
108 ALOGE("failed to add interface %s to VPN netId %u", interface.c_str(), mNetId);
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
H A DErrors.java41 scopes.add(name);
50 add(msg);
55 add(msg);
60 add(msg);
84 private void add(String msg) { method in class:Errors
85 messages.add(scopes.toString() + ": " + msg);
/system/core/storaged/
H A Dstoraged_diskstats.cpp239 void disk_stats_monitor::add(struct disk_perf* perf) function in class:disk_stats_monitor
241 mStats.read_perf.add(perf->read_perf);
242 mStats.read_ios.add(perf->read_ios);
243 mStats.write_perf.add(perf->write_perf);
244 mStats.write_ios.add(perf->write_ios);
245 mStats.queue.add(perf->queue);
272 add(&perf);
/system/extras/perfprofd/scripts/
H A Dperf_proto_stack_sqlite_flame.py32 def add(self, dso_id, sym_id): member in class:Callsite
155 chain = chain.add(row[2], row[3])
/system/extras/simpleperf/scripts/
H A Ddebug_unwind_reporter.py65 def add(self, pid, map_entry): member in class:ProcessMaps
409 process_maps.add(pid, MapEntry(start, end, filename))
H A Dreport_html.py52 def add(self, text): member in class:HtmlWriter
59 self.add(f.read())
128 # When a callstack contains recursive function, only add for each function once.
131 hit_func_ids.add(func_id)
148 # When a callstack contains recursive function, only add for each function once.
151 hit_func_ids.add(func_id)
281 hit_func_ids.add(self.func_id)
807 self.hw.open_tag('script').add(
816 self.hw.open_tag('style', type='text/css').add("""
831 self.hw.add(jso
[all...]
/system/libvintf/include/vintf/
H A DHalGroup.h40 if (!add(std::move(pair.second))) {
51 virtual bool add(Hal&& hal) { return addInternal(std::move(hal)) != nullptr; } function in struct:android::vintf::HalGroup
143 // override this to filter for add.
/system/bt/bta/gatt/
H A Dbta_gattc_utils.cc407 const RawAddress& remote_bda_ptr, bool add) {
417 if (add) /* mask on the cif bit */
432 if (!add) {
406 bta_gattc_mark_bg_conn(tGATT_IF client_if, const RawAddress& remote_bda_ptr, bool add) argument
/system/chre/core/
H A Dsensor_request_manager.cc161 success = requests.add(sensorRequest, &requestChanged);
332 bool SensorRequestManager::SensorRequests::add(const SensorRequest& request, function in class:chre::SensorRequestManager::SensorRequests
/system/core/include/utils/
H A DSortedVector.h107 //! add an item in the right place (and replace the one that is there)
108 ssize_t add(const TYPE& item);
128 * these inlines add some level of compatibility with STL.
220 ssize_t SortedVector<TYPE>::add(const TYPE& item) { function in class:android::SortedVector
221 return SortedVectorImpl::add(&item);
H A DVector.h150 * add/insert/replace items
164 inline ssize_t add();
166 ssize_t add(const TYPE& item);
196 * these inlines add some level of compatibility with STL. eventually
347 ssize_t Vector<TYPE>::add(const TYPE& item) { function in class:android::Vector
348 return VectorImpl::add(&item);
372 ssize_t Vector<TYPE>::add() { function in class:android::Vector
373 return VectorImpl::add();
/system/core/libutils/
H A DVectorImpl.cpp244 ssize_t VectorImpl::add() function in class:android::VectorImpl
246 return add(0);
249 ssize_t VectorImpl::add(const void* item) function in class:android::VectorImpl
622 ssize_t SortedVectorImpl::add(const void* item)
642 ssize_t err = add( reinterpret_cast<const char*>(buffer) + i*is );
/system/core/libutils/include/utils/
H A DSortedVector.h107 //! add an item in the right place (and replace the one that is there)
108 ssize_t add(const TYPE& item);
128 * these inlines add some level of compatibility with STL.
220 ssize_t SortedVector<TYPE>::add(const TYPE& item) { function in class:android::SortedVector
221 return SortedVectorImpl::add(&item);
H A DVector.h150 * add/insert/replace items
164 inline ssize_t add();
166 ssize_t add(const TYPE& item);
196 * these inlines add some level of compatibility with STL. eventually
347 ssize_t Vector<TYPE>::add(const TYPE& item) { function in class:android::Vector
348 return VectorImpl::add(&item);
372 ssize_t Vector<TYPE>::add() { function in class:android::Vector
373 return VectorImpl::add();
/system/core/storaged/include/
H A Dstoraged_diskstats.h131 void add(uint32_t num) { function in class:stream_stats
169 void add(struct disk_perf* perf);
/system/hwservicemanager/
H A DServiceManager.cpp212 Return<bool> ServiceManager::add(const hidl_string& name, const sp<IBase>& service) { function in class:android::hidl::manager::implementation::ServiceManager
229 // First, verify you're allowed to add() the whole interface hierarchy
/system/libvintf/
H A DCompatibilityMatrix.cpp29 bool CompatibilityMatrix::add(MatrixHal &&hal) { function in class:android::vintf::CompatibilityMatrix
30 return HalGroup<MatrixHal>::add(std::move(hal));
33 bool CompatibilityMatrix::add(MatrixKernel &&kernel) { function in class:android::vintf::CompatibilityMatrix
167 if (!add(std::move(halToAdd))) {
169 *error = "Cannot add HAL " + name + " for unknown reason.";
189 *error = "Cannot add XML File " + name + " for unknown reason.";
211 // Shouldn't retroactively add requirements to minLts(), so ignore this.
217 if (!add(std::move(kernelToAdd))) {
219 *error = "Cannot add " + to_string(minLts) + " for unknown reason.";
368 // Add <kernel> from exact "level", then optionally add <kerne
[all...]
H A DHalManifest.cpp90 bool HalManifest::add(ManifestHal&& halToAdd) { function in class:android::vintf::HalManifest
103 return HalGroup::add(std::move(halToAdd));
343 matrix.add(MatrixHal{
/system/nfc/src/nfc/tags/
H A Drw_t1t.cc323 tNFC_STATUS rw_t1t_send_static_cmd(uint8_t opcode, uint8_t add, uint8_t dat) { argument
335 p_t1t->addr = add;
339 UINT8_TO_BE_STREAM(p, add);
383 tNFC_STATUS rw_t1t_send_dyn_cmd(uint8_t opcode, uint8_t add, uint8_t* p_dat) { argument
395 p_t1t->addr = add;
399 UINT8_TO_BE_STREAM(p, add);
/system/tools/hidl/
H A DMethod.cpp298 bool TypedVarVector::add(NamedReference<Type>* v) { function in class:android::TypedVarVector
/system/bt/stack/btm/
H A Dbtm_ble_privacy.cc58 * Description add target address into resolving pending operation queue
61 * add_entry: true for add entry, false for remove entry
188 void btm_ble_update_resolving_list(const RawAddress& pseudo_bda, bool add) { argument
192 if (add) {
261 * add resolving list entry
701 /* only add RPA enabled device into resolving list */
/system/core/libpixelflinger/codeflinger/
H A Dtexturing.cpp1014 add(fragment, incoming, texel, component);
1218 void GGLAssembler::add( function in class:android::GGLAssembler
/system/core/logd/
H A DLogStatistics.cpp92 void LogStatistics::add(LogBufferElement* element) { function in class:LogStatistics
99 // called add() and subtract() for each entry as they are
136 uidTable[log_id].add(element->getUid(), element);
138 pidSystemTable[log_id].add(element->getPid(), element);
145 pidTable.add(element->getPid(), element);
146 tidTable.add(element->getTid(), element);
151 securityTagTable.add(tag, element);
153 tagTable.add(tag, element);
158 tagNameTable.add(TagNameKey(element), element);
310 // Helper to truncate name, if too long, and add nam
[all...]

Completed in 6661 milliseconds

12