Searched refs:first (Results 1 - 25 of 167) sorted by last modified time

1234567

/system/weaved/buffet/
H A Dmanager.cc188 android::IInterface::asBinder(pair.first));
H A Dshill_client.cc274 device_paths_to_remove.insert(kv.first);
356 VLOG(3) << "Device at " << it->first.value() << " has selected service at "
/system/webservd/libwebserv/
H A Ddbus_protocol_handler.cc150 pair.first->RemoveRequestHandlerAsync(
169 pair.first,
173 pair.first));
244 header_list.emplace_back(pair.first, pair.second);
H A Ddbus_server.cc202 new DBusProtocolHandler{name, this}}).first;
H A Drequest.cc78 data.emplace_back(pair.first, pair.second.get());
86 while (pair.first != pair.second) {
87 data.push_back(pair.first->second);
88 ++pair.first;
91 while (pair.first != pair.second) {
92 data.push_back(pair.first->second);
93 ++pair.first;
102 while (pair.first != pair.second) {
103 data.push_back(pair.first->second);
104 ++pair.first;
[all...]
H A Dresponse.cc84 json_value.SetString(pair.first, pair.second);
/system/webservd/webservd/
H A Ddbus_protocol_handler.cc52 pair.first, pair.second.on_client_disconnected_callback);
89 std::move(dbus_service_data)).first;
H A Ddbus_request_handler.cc54 headers.emplace_back(pair.first, pair.second);
66 params.emplace_back(false, pair.first, pair.second);
69 params.emplace_back(true, pair.first, pair.second);
H A Dlog_manager.cc151 base::StringPrintf("%s-%c.%s", pair.first.c_str(),
H A Dprotocol_handler.cc121 // Try exact match first. If everything matches, we have our handler.
123 return pair.first;
148 handler_id = pair.first;
H A Drequest.cc234 MHD_add_response_header(resp, pair.first.c_str(), pair.second.c_str());
397 CHECK(post_data_.back().first == key);
/system/tpm/attestation/server/
H A Dpkcs11_key_store_test.cc141 // This just controls whether the first call to
254 if (item.second == value && labels_.count(item.first) > 0) {
255 found_objects_.push_back(labels_[item.first]);
/system/tpm/trunks/
H A Dresource_manager.cc214 candidates.push_back(item.first);
302 item.first) != command_info.handles.end()) {
353 sessions_to_ungap.push_back(item.first);
H A Dresource_manager_test.cc644 std::vector<TPM_HANDLE> input_handles = {item.first};
665 // Use the first two sessions, leaving the third as the most stale.
680 // Use the first two sessions again, expecting no calls to ContextLoad.
803 // handled by the resource manager, and in the process of handling the first
/system/update_engine/
H A Dchrome_browser_proxy_resolver.cc105 TEST_AND_RETURN_FALSE(it->first == source_url);
113 TEST_AND_RETURN_FALSE(it->first == source_url);
139 (*callback.first)(ParseProxyString(proxy_info), callback.second);
148 (*callback.first)(proxies, callback.second);
162 // Start by finding the first space (if any).
H A Dp2p_manager.cc291 // Returns True if the timestamp in the first pair is greater than the
370 if (!DeleteP2PFile(i->first, "too many files"))
/system/update_engine/common/
H A Dhttp_fetcher_unittest.cc813 // This test starts a new http server and kills it after receiving its first
993 string tmp_str = base::StringPrintf("%jd+", it->first);
996 multi_fetcher->AddRange(it->first, it->second);
999 multi_fetcher->AddRange(it->first);
1139 "abcdefghijabcdefghijabcde", // only received the first chunk
H A Dlibcurl_http_fetcher.cc461 // Update HTTP response first.
552 fd_max = max(fd_max, fd_task_maps_[t].rbegin()->first);
636 // first, since it could be canceled by this call.
651 << fd_taks_pair.first;
H A Dsubprocess.cc51 setenv(key_value.first.c_str(), key_value.second.c_str(), 0);
162 // redirected pipes are still alive. Releasing the process first makes
H A Dsubprocess_unittest.cc94 EXPECT_NE(allowed_envs.end(), allowed_envs.find(key_value_pair.first));
230 // two bytes to the fifo, the first one marks that the program is running and
232 // killed. We should read the first byte but not the second one.
H A Dutils.cc170 if (kv_pair.first == "fw_version") {
724 // Read from the fd only once and detect in memory. The first 2 KiB is enough
825 // The first 2 KiB is enough to read the ext2 superblock (located at offset
834 // The first 96 is enough to read the squashfs superblock.
/system/update_engine/payload_generator/
H A Dcycle_breaker.cc138 Vertex::Index w = it->first;
H A Dcycle_breaker_unittest.cc172 expected_cuts.insert(make_pair(n_root, it->first));
H A Dext2_filesystem.cc69 // |blocknr| points to a block in the first three cases. The last case is
162 // List of directories. We need to first parse all the files in a directory
304 if (used_inodes.find(ino_file.first) != used_inodes.end())
H A Dextent_ranges.cc67 Extent UnionOverlappingExtents(const Extent& first, const Extent& second) { argument
68 CHECK_NE(kSparseHole, first.start_block());
70 uint64_t start = std::min(first.start_block(), second.start_block());
71 uint64_t end = std::max(first.start_block() + first.num_blocks(),

Completed in 347 milliseconds

1234567