Searched defs:destination (Results 1 - 15 of 15) sorted by relevance

/system/weaved/buffet/
H A Dweave_error_conversion.h27 std::unique_ptr<brillo::Error>* destination) {
30 ConvertError(*inner_error, destination);
34 destination,
42 std::unique_ptr<weave::Error>* destination) {
45 ConvertError(*inner_error, destination);
49 destination,
26 ConvertError(const weave::Error& source, std::unique_ptr<brillo::Error>* destination) argument
41 ConvertError(const brillo::Error& source, std::unique_ptr<weave::Error>* destination) argument
/system/ca-certificates/
H A DAndroid.mk31 # $(3): destination directory
32 define include-prebuilt-with-destination-directory
47 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory))))
56 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))
/system/tpm/trunks/
H A Dbackground_command_transceiver.cc30 void AssignAndSignal(std::string* destination, argument
33 *destination = source;
/system/bt/vendor_libs/test_vendor_lib/src/
H A Dpacket_stream.cc105 bool PacketStream::ReceiveAll(std::vector<uint8_t>& destination, argument
107 destination.resize(num_octets_to_receive);
111 read(fd, &destination[num_octets_to_receive - octets_remaining],
/system/connectivity/shill/
H A Dicmp.cc63 bool Icmp::TransmitEchoRequest(const IPAddress& destination, uint16_t id, argument
69 if (!destination.IsValid()) {
74 if (destination.family() != IPAddress::kFamilyIPv4) {
75 NOTIMPLEMENTED() << "Only IPv4 destination addresses are implemented.";
90 destination.GetLength());
92 destination.address().GetConstData(),
H A Dicmp_session.cc67 bool IcmpSession::Start(const IPAddress& destination, argument
91 weak_ptr_factory_.GetWeakPtr(), destination));
138 void IcmpSession::TransmitEchoRequestTask(const IPAddress& destination) { argument
144 if (icmp_->TransmitEchoRequest(destination, echo_id_,
158 weak_ptr_factory_.GetWeakPtr(), destination),
H A Dicmp_session_unittest.cc92 void StartAndVerify(const IPAddress& destination) { argument
98 EXPECT_TRUE(Start(destination));
104 bool Start(const IPAddress& destination) { argument
106 destination, Bind(&IcmpSessionTest::ResultCallback, Unretained(this)));
123 void TransmitEchoRequestTask(const IPAddress& destination, argument
125 EXPECT_CALL(*icmp_, TransmitEchoRequest(IsIPAddress(destination),
129 icmp_session_.TransmitEchoRequestTask(destination);
H A Dmanager.cc1048 const ProfileRefPtr& destination) {
1053 << destination->GetFriendlyName()
1056 return destination->AdoptService(to_move) && from->AbandonService(to_move);
1558 // If Chrome thinks this destination is already configured, service
1559 // will be an AP that both we and the destination are connected
1047 MoveServiceToProfile(const ServiceRefPtr& to_move, const ProfileRefPtr& destination) argument
/system/connectivity/shill/shims/
H A Dnetfilter_queue_processor.h111 destination(0) {}
123 destination(destination_in) {}
129 uint32_t destination; member in struct:shill::shims::NetfilterQueueProcessor::ListenerEntry
160 // which transmitted to multicast destination |destination|.
162 uint16_t port, int device_index, uint32_t destination);
H A Dnetfilter_queue_processor.cc346 uint32_t destination) {
351 (*it)->destination == destination) {
419 uint32_t destination = 0; local
420 // Allow multicast replies if the destination port of the packet is the
423 destination = packet.destination_ip();
440 address, netmask, destination));
443 << " with destination "
444 << AddressAndPortToString(destination, port);
344 FindDestination(uint16_t port, int device_index, uint32_t destination) argument
/system/core/adb/
H A Dbugreport.cpp92 std::string destination; local
94 destination = dest_file_;
96 destination = android::base::StringPrintf("%s%c%s", dest_dir_.c_str(),
102 br_->DoSyncPull(srcs, destination.c_str(), true, line_message_.c_str()) ? 0 : 1;
108 destination.c_str(), src_file_.c_str());
159 // Bugreport destination on host, depending on argument passed on constructor:
167 // Message displayed on LinePrinter, it's updated every time the destination above change.
H A Dsockets.cpp519 void connect_to_remote(asocket* s, const char* destination) { argument
522 size_t len = strlen(destination) + 1;
525 fatal("destination oversized");
528 D("LS(%d): connect('%s')", s->id, destination);
532 strcpy((char*)p->data, destination);
/system/netd/server/
H A DNetworkController.cpp498 int NetworkController::addRoute(unsigned netId, const char* interface, const char* destination, argument
500 return modifyRoute(netId, interface, destination, nexthop, true, legacy, uid);
503 int NetworkController::removeRoute(unsigned netId, const char* interface, const char* destination, argument
505 return modifyRoute(netId, interface, destination, nexthop, false, legacy, uid);
614 int NetworkController::modifyRoute(unsigned netId, const char* interface, const char* destination, argument
643 return add ? RouteController::addRoute(interface, destination, nexthop, tableType) :
644 RouteController::removeRoute(interface, destination, nexthop, tableType);
H A DCommandListener.cpp1544 // network route [legacy <uid>] add <netId> <interface> <destination> [nexthop]
1545 // network route [legacy <uid>] remove <netId> <interface> <destination> [nexthop]
1576 const char* destination = argv[nextArg++]; local
1581 ret = gCtls->netCtrl.addRoute(netId, interface, destination, nexthop, legacy, uid);
1583 ret = gCtls->netCtrl.removeRoute(netId, interface, destination, nexthop, legacy, uid);
H A DRouteController.cpp362 const char* destination, const char* nexthop) {
363 // At least the destination must be non-null.
364 if (!destination) {
365 ALOGE("null destination");
373 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
376 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
879 WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination, argument
904 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
1096 int RouteController::addRoute(const char* interface, const char* destination, cons argument
361 modifyIpRoute(uint16_t action, uint32_t table, const char* interface, const char* destination, const char* nexthop) argument
1101 removeRoute(const char* interface, const char* destination, const char* nexthop, TableType tableType) argument
[all...]

Completed in 757 milliseconds