Searched refs:name (Results 176 - 184 of 184) sorted by last modified time

12345678

/system/extras/tests/sdcard/
H A Dstopwatch.h62 // StopWatch watch("my name", 20);
85 // @param name To be used when the results are displayed. No
91 StopWatch(const char *name, size_t capacity = kUseDefaultCapacity);
H A Dtestcase.h122 const char *name() const { return mName; } function in class:android_test::TestCase
/system/netd/
H A DCommandListener.cpp899 // set the address of the interface to which the name servers
952 char name[31]; local
955 name, rx, &d, &d, &d, &d, &d, &d, &d, tx);
956 char *rxString = strchr(name, ':');
959 // when the rx count gets too big it changes from "name: 999" to "name:1000"
966 if (strcmp(name, iface)) {
H A DDnsProxyListener.cpp124 char* name = argv[1]; local
125 if (strcmp("^", name) == 0) {
126 name = NULL;
128 name = strdup(name);
154 name ? name : "[nullhost]",
160 new DnsProxyListener::GetAddrInfoHandler(cli, name, service, hints);
H A DMDnsSdListener.cpp688 static int wait_for_property(const char *name, const char *desired_value, int maxwait) argument
699 if (property_get(name, value, NULL)) {
H A DMDnsSdListener.h138 static int wait_for_property(const char *name, const char *desired_value, int maxwait);
H A DNetlinkHandler.cpp96 void NetlinkHandler::notifyInterfaceAdded(const char *name) { argument
98 snprintf(msg, sizeof(msg), "Iface added %s", name);
104 void NetlinkHandler::notifyInterfaceRemoved(const char *name) { argument
106 snprintf(msg, sizeof(msg), "Iface removed %s", name);
112 void NetlinkHandler::notifyInterfaceChanged(const char *name, bool isUp) { argument
114 snprintf(msg, sizeof(msg), "Iface changed %s %s", name,
121 void NetlinkHandler::notifyInterfaceLinkChanged(const char *name, bool isUp) { argument
123 snprintf(msg, sizeof(msg), "Iface linkstate %s %s", name,
130 void NetlinkHandler::notifyQuotaLimitReached(const char *name, const char *iface) { argument
132 snprintf(msg, sizeof(msg), "limit alert %s %s", name, ifac
138 notifyInterfaceClassActivity(const char *name, bool isActive) argument
[all...]
H A DNetlinkHandler.h36 void notifyInterfaceAdded(const char *name);
37 void notifyInterfaceRemoved(const char *name);
38 void notifyInterfaceChanged(const char *name, bool isUp);
39 void notifyInterfaceLinkChanged(const char *name, bool isUp);
40 void notifyQuotaLimitReached(const char *name, const char *iface);
41 void notifyInterfaceClassActivity(const char *name, bool isActive);
H A DThrottleController.cpp40 extern "C" int ifc_up(const char *name);
41 extern "C" int ifc_down(const char *name);

Completed in 160 milliseconds

12345678