OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:setInterfaceThrottle
(Results
1 - 7
of
7
) sorted by null
/system/netd/
ThrottleController.h
22
static int
setInterfaceThrottle
(const char *iface, int rxKbps, int txKbps);
ThrottleController.cpp
61
int ThrottleController::
setInterfaceThrottle
(const char *iface, int rxKbps, int txKbps) {
CommandListener.cpp
191
if (ThrottleController::
setInterfaceThrottle
(argv[2], atoi(argv[3]), atoi(argv[4]))) {
[
all
...]
/frameworks/base/core/java/android/os/
INetworkManagementService.aidl
288
void
setInterfaceThrottle
(String iface, int rxKbps, int txKbps);
/frameworks/base/services/java/com/android/server/
ThrottleService.java
577
mNMService.
setInterfaceThrottle
(mIface, -1, -1);
578
mNMService.
setInterfaceThrottle
(mIface,
607
mNMService.
setInterfaceThrottle
(mIface,
695
mNMService.
setInterfaceThrottle
(mIface, -1, -1);
[
all
...]
NetworkManagementService.java
[
all
...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
ThrottleServiceTest.java
301
* Expect {@link NetworkManagementService#
setInterfaceThrottle
} mock call
305
mMockNMService.
setInterfaceThrottle
(isA(String.class), eq(rx), eq(tx));
Completed in 295 milliseconds