Searched defs:items (Results 1 - 6 of 6) sorted by relevance

/system/bt/osi/test/
H A Darray_test.cc41 int items[100]; local
44 items[i] = i * i;
45 array_append_ptr(array, &items[i]);
/system/bt/osi/src/
H A Dhash_map_utils.cc41 int items = 0; local
67 items++;
72 if (!items) LOG_VERBOSE(LOG_TAG, "%s: no items found in string\n", __func__);
/system/extras/simpleperf/
H A Devent_type.cpp65 std::vector<std::string> items = android::base::Split(line, " "); local
66 CHECK_EQ(items.size(), 2u);
67 std::string event_name = items[0];
69 CHECK(android::base::ParseUint(items[1].c_str(), &id));
/system/core/libcutils/
H A Dstr_parms.c152 int items = 0; local
195 items++;
200 if (!items)
201 ALOGV("%s: no items found in string\n", __func__);
/system/tools/aidl/
H A Daidl.cpp370 const std::vector<std::unique_ptr<AidlMethod>>& items) {
377 for (const auto& item : items) {
414 for (const auto& item : items) {
369 check_and_assign_method_ids(const char * filename, const std::vector<std::unique_ptr<AidlMethod>>& items) argument
/system/bt/stack/btm/
H A Dbtm_ble_gap.cc71 if (it != items.end()) {
76 if (items.size() > cache_max) {
77 items.pop_back();
80 items.emplace_front(addr_type, addr, std::move(data));
81 return items.front().data;
88 if (it != items.end()) {
93 if (items.size() > cache_max) {
94 items.pop_back();
97 items.emplace_front(addr_type, addr, std::move(data));
98 return items
130 std::list<Item> items; member in class:__anon857::AdvertisingCache
[all...]

Completed in 674 milliseconds