Searched refs:destination (Results 1 - 17 of 17) sorted by relevance

/system/netd/server/
H A DRouteController.h82 static int addRoute(const char* interface, const char* destination, const char* nexthop,
84 static int removeRoute(const char* interface, const char* destination, const char* nexthop,
105 int modifyIpRoute(uint16_t action, uint32_t table, const char* interface, const char* destination,
H A DNetworkController.h122 int addRoute(unsigned netId, const char* interface, const char* destination,
124 int removeRoute(unsigned netId, const char* interface, const char* destination,
142 int modifyRoute(unsigned netId, const char* interface, const char* destination,
H A DRouteController.cpp330 const char* destination, const char* nexthop) {
331 // At least the destination must be non-null.
332 if (!destination) {
333 ALOGE("null destination");
341 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
344 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
419 actionName(action), destination, nexthop, interface, table, strerror(-ret));
860 WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination, argument
885 int ret = modifyIpRoute(action, table, interface, destination, nextho
329 modifyIpRoute(uint16_t action, uint32_t table, const char* interface, const char* destination, const char* nexthop) argument
1067 addRoute(const char* interface, const char* destination, const char* nexthop, TableType tableType) argument
1072 removeRoute(const char* interface, const char* destination, const char* nexthop, TableType tableType) argument
[all...]
H A DNetworkController.cpp538 int NetworkController::addRoute(unsigned netId, const char* interface, const char* destination, argument
540 return modifyRoute(netId, interface, destination, nexthop, true, legacy, uid);
543 int NetworkController::removeRoute(unsigned netId, const char* interface, const char* destination, argument
545 return modifyRoute(netId, interface, destination, nexthop, false, legacy, uid);
658 int NetworkController::modifyRoute(unsigned netId, const char* interface, const char* destination, argument
687 return add ? RouteController::addRoute(interface, destination, nexthop, tableType) :
688 RouteController::removeRoute(interface, destination, nexthop, tableType);
H A DCommandListener.cpp1338 // network route [legacy <uid>] add <netId> <interface> <destination> [nexthop]
1339 // network route [legacy <uid>] remove <netId> <interface> <destination> [nexthop]
1370 const char* destination = argv[nextArg++]; local
1375 ret = gCtls->netCtrl.addRoute(netId, interface, destination, nexthop, legacy, uid);
1377 ret = gCtls->netCtrl.removeRoute(netId, interface, destination, nexthop, legacy, uid);
/system/bt/vendor_libs/test_vendor_lib/include/
H A Dpacket_stream.h55 // Attempts to receive |num_octets_to_receive| into |destination| from |fd|,
57 bool ReceiveAll(std::vector<uint8_t>& destination,
/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/core/adb/
H A Dsocket.h109 asocket *create_local_service_socket(const char* destination,
113 void connect_to_remote(asocket *s, const char *destination);
H A Dbugreport.cpp95 std::string destination; local
97 destination = dest_file_;
99 destination = android::base::StringPrintf("%s%c%s", dest_dir_.c_str(),
105 br_->DoSyncPull(srcs, destination.c_str(), false, line_message_.c_str()) ? 0 : 1;
111 destination.c_str(), src_file_.c_str());
168 // Bugreport destination on host, depending on argument passed on constructor:
176 // Message displayed on LinePrinter, it's updated every time the destination above change.
H A Dsockets.cpp515 void connect_to_remote(asocket* s, const char* destination) { argument
518 size_t len = strlen(destination) + 1;
521 fatal("destination oversized");
524 D("LS(%d): connect('%s')", s->id, destination);
528 strcpy((char*)p->data, destination);
/system/bt/vendor_libs/test_vendor_lib/src/
H A Dpacket_stream.cc102 bool PacketStream::ReceiveAll(vector<uint8_t>& destination, argument
104 destination.resize(num_octets_to_receive);
108 read(fd, &destination[num_octets_to_receive - octets_remaining],
/system/extras/ioshark/
H A Dioshark_bench.h120 struct timeval *destination)
126 timeradd(destination, &res, &finish);
127 *destination = finish;
119 update_delta_time(struct timeval *start, struct timeval *destination) argument
/system/tpm/trunks/
H A Dbackground_command_transceiver.cc30 void AssignAndSignal(std::string* destination, argument
33 *destination = source;
/system/ca-certificates/google/
H A DAndroid.mk21 $(foreach cacert, $(cacerts_google), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-google-$(notdir $(cacert)),$(cacert),$(cacerts_google_target_directory))))
30 $(foreach cacert, $(cacerts_google), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-google-$(notdir $(cacert)),$(cacert),$(cacerts_google_host_directory))))
/system/extras/simpleperf/demo/SimpleperfExampleOfKotlin/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...

Completed in 1091 milliseconds