Home
last modified time | relevance | path

Searched refs:startTethering (Results 1 – 3 of 3) sorted by relevance

/system/netd/server/
DTetherController.h84 int startTethering(bool isLegacyDnsProxy, int num_addrs, char** dhcp_ranges);
85 int startTethering(bool isLegacyDnsProxy, const std::vector<std::string>& dhcpRanges);
DTetherController.cpp203 int TetherController::startTethering(bool usingLegacyDnsProxy, int num_addrs, char** dhcp_ranges) { in startTethering() function in android::net::TetherController
325 int TetherController::startTethering(bool usingLegacyDnsProxy, in startTethering() function in android::net::TetherController
334 return startTethering(usingLegacyDnsProxy, dhcp_ranges.size(), dhcp_ranges.data()); in startTethering()
DNetdNativeService.cpp977 int res = gCtls->tetherCtrl.startTethering(config.usingLegacyDnsProxy, config.dhcpRanges); in tetherStartWithConfiguration()