Searched defs:find (Results 1 - 13 of 13) sorted by relevance

/system/bt/osi/test/
H A Dlist_test.cc188 int find = 4; local
189 list_node_t* rc = list_foreach(list, list_callback_find_int, &find);
194 find = 1;
195 rc = list_foreach(list, list_callback_find_int, &find);
200 find = 5;
201 rc = list_foreach(list, list_callback_find_int, &find);
206 find = 0;
207 rc = list_foreach(list, list_callback_find_int, &find);
/system/bt/stack/a2dp/
H A Da2dp_int.h52 tA2DP_FIND_CB find; /* find service control block */ member in struct:__anon895
/system/extras/perfprofd/scripts/
H A Dsorted_collection.py113 def find(self, k): member in class:SortedCollection
H A Dperf_proto_stack.py64 def find(self, addr): member in class:MmapState
92 def find(self, addr): member in class:SymbolMap
160 logging.warn('Cannot find %s for min_vaddr', filename)
176 # Block is done, won't find anything else.
209 logging.warn('Cannot find %s for unwind_symbols', filename)
228 plus_index = parts[0].find('>+')
293 map = mmap_state.find(addr)
313 symbol = device_symbols[name].find(offset)
335 logging.warn("Failed to find symbol for %s +%d (%d)", name, offset, addr)
/system/extras/simpleperf/scripts/
H A Ddebug_unwind_reporter.py94 def find(self, pid, addr): member in class:ProcessMaps
358 map_entry = process_maps.find(record.pid, ip)
404 pos = lines[i].find('filename') + len('filename')
/system/bt/stack/l2cap/
H A Dl2cap_client.cc61 static l2cap_client_t* find(uint16_t local_channel_id);
191 l2cap_client_t* client = find(local_channel_id);
193 LOG_ERROR(LOG_TAG, "%s unable to find L2CAP client for LCID 0x%04x.",
217 l2cap_client_t* client = find(local_channel_id);
220 LOG_ERROR(LOG_TAG, "%s unable to find L2CAP client matching LCID 0x%04x.",
264 l2cap_client_t* client = find(local_channel_id);
267 LOG_ERROR(LOG_TAG, "%s unable to find L2CAP client matching LCID 0x%04x.",
307 l2cap_client_t* client = find(local_channel_id);
309 LOG_ERROR(LOG_TAG, "%s unable to find L2CAP client with LCID 0x%04x.",
327 l2cap_client_t* client = find(local_channel_i
450 static l2cap_client_t* find(uint16_t local_channel_id) { function
[all...]
/system/chre/core/
H A Dsensor_request_manager.cc136 bool nanoappHasRequest = (requests.find(nanoapp, &requestIndex) != nullptr);
316 const SensorRequest *SensorRequestManager::SensorRequests::find( function in class:chre::SensorRequestManager::SensorRequests
/system/libhwbinder/
H A DBpHwBinder.cpp62 void* BpHwBinder::ObjectManager::find(const void* objectID) const function in class:android::hardware::BpHwBinder::ObjectManager
240 return mObjects.find(objectID);
/system/security/keystore/
H A Dauthorization_set.cpp126 pos = find(i->tag, pos);
136 int AuthorizationSet::find(Tag tag, int begin) const { function in class:keystore::AuthorizationSet
168 for (int pos = -1; (pos = find(tag, pos)) != -1;)
174 int pos = find(tag);
/system/core/liblog/
H A Devent_tag_map.cpp147 const TagFmt* find(uint32_t tag) const;
148 int find(TagFmt&& tagfmt) const;
149 int find(MapString&& tag) const;
161 it = Idx2TagFmt.find(tag);
178 it = TagFmt2Idx.find(tagfmt);
195 it = Tag2Idx.find(tagfmt.first);
208 const TagFmt* EventTagMap::find(uint32_t tag) const { function in class:EventTagMap
211 it = Idx2TagFmt.find(tag);
216 int EventTagMap::find(TagFmt&& tagfmt) const { function in class:EventTagMap
219 it = TagFmt2Idx.find(st
224 int EventTagMap::find(MapString&& tag) const { function in class:EventTagMap
[all...]
/system/core/libutils/
H A DString8.cpp412 ssize_t String8::find(const char* other, size_t start) const function in class:android::String8
424 ssize_t index = find(other);
434 ssize_t next = find(other, index + skip);
599 // find the last dot
/system/keymaster/android_keymaster/
H A Dauthorization_set.cpp199 index = find(set.params[i].tag, index);
229 int AuthorizationSet::find(keymaster_tag_t tag, int begin) const { function in class:keymaster::AuthorizationSet
549 for (int pos = -1; (pos = find(tag, pos)) != -1;)
555 int pos = find(tag);
568 pos = find(tag, pos);
579 int pos = find(tag);
592 pos = find(tag, pos);
603 int pos = find(tag);
616 pos = find(tag, pos);
627 int pos = find(ta
[all...]
/system/core/bootstat/
H A Dbootstat.cpp296 auto mapping = kBootReasonMap.find(boot_reason);
370 while ((pos = r.find(',', pos)) != std::string::npos) {
455 // Our implementation of find, use only fuzzy match.
456 size_t find(const std::string& needle, size_t start = 0) const { function in class:__anon1555::pstoreConsole
476 pos = console.find(needle, pos);
569 // reported by the bootloader and find some logical and canonical
585 if (reason.find(s.first) != std::string::npos) {
589 if (s.second.size() && (reason.find(s.second) != std::string::npos)) {
598 if (reason.find("sec") != std::string::npos) {
679 // Really a hail-mary pass to find i
[all...]

Completed in 4881 milliseconds