Home
last modified time | relevance | path

Searched refs:string (Results 1 – 24 of 24) sorted by relevance

/system/netd/
DBandwidthController.h30 TetherStats(std::string ifnIn, std::string ifnOut, in TetherStats()
36 std::string ifaceIn;
37 std::string ifaceOut;
81 int getTetherStats(TetherStats &stats, std::string &extraProcessingInfo);
86 QuotaInfo(std::string ifn, int64_t q, int64_t a) in QuotaInfo()
88 std::string ifaceName;
109 std::string makeIptablesNaughtyCmd(IptOp op, int uid);
110 std::string makeIptablesQuotaCmd(IptOp op, const char *costName, int64_t quota);
138 std::string &extraProcessingInfo);
142 std::list<std::string> sharedQuotaIfaces;
DBandwidthController.cpp200 std::string fullCmd = cmd; in runIptablesCmd()
309 std::string BandwidthController::makeIptablesNaughtyCmd(IptOp op, int uid) { in makeIptablesNaughtyCmd()
310 std::string res; in makeIptablesNaughtyCmd()
346 std::string naughtyCmd; in maninpulateNaughtyApps()
409 std::string BandwidthController::makeIptablesQuotaCmd(IptOp op, const char *costName, int64_t quota… in makeIptablesQuotaCmd()
410 std::string res; in makeIptablesQuotaCmd()
441 std::string costString; in prepCostlyIface()
494 std::string costString; in cleanupCostlyIface()
530 std::string quotaCmd; in setInterfaceSharedQuota()
531 std::string ifaceName; in setInterfaceSharedQuota()
[all …]
DCommandListener.cpp1178 std::string extraProcessingInfo = ""; in runCommand()
/system/core/sh/
Dmystring.c95 prefix(const char *pfx, const char *string) in prefix() argument
98 if (*pfx++ != *string++) in prefix()
Dexpand.c944 ifsbreakup(char *string, struct arglist *arglist) in ifsbreakup() argument
955 start = string; in ifsbreakup()
971 p = string + ifsp->begoff; in ifsbreakup()
974 while (p < string + ifsp->endoff) { in ifsbreakup()
1009 for (; p < string + ifsp->endoff; p++) { in ifsbreakup()
1331 patmatch(char *pattern, char *string, int squoted) in patmatch() argument
1335 return 1 - pmatch(pattern + 2, string); in patmatch()
1338 return pmatch(pattern, string, squoted); in patmatch()
1343 pmatch(char *pattern, char *string, int squoted) in pmatch() argument
1349 q = string; in pmatch()
Dnodetypes44 # string - a pointer to a nul terminated string
91 var string # the for variable
111 text string # the text of the word
Dinput.c481 setinputstring(char *string, int push) in setinputstring() argument
486 parsenextc = string; in setinputstring()
487 parselleft = parsenleft = strlen(string); in setinputstring()
DTOUR109 string was going to be:
190 The locations of these commands in the string are indicated by
263 same string as the value (using the format "name=value") so that
264 no string copying is needed to create the environment of a com-
343 input to come from a string rather than a file. (This is for the
/system/core/toolbox/
Ddynarray.c84 STRLIST_FOREACH(list, string, free(string)); in strlist_done()
/system/core/adb/
DOVERVIEW.TXT86 1. A 4-byte hexadecimal string giving the length of the payload
93 2. Send the string "000Chost:version" to the corresponding socket
101 1. For success, the 4-byte "OKAY" string
103 2. For failure, the 4-byte "FAIL" string, followed by a
104 4-byte hex length, followed by a string giving the reason
108 hex string corresponding to the server's internal version number
Dprotocol.txt47 is represented by a quoted string or an empty string if none should be
56 --- CONNECT(version, maxdata, "system-identity-string") ----------------
72 The system identity string should be "<systemtype>:<serialno>:<banner>"
75 or identifier string (informational only).
DSERVICES.TXT11 hex string corresponding to its internal version number, without
22 and a string that will be dumped as-is by the client, then
92 Returns the state of a given device as a string.
203 the corresponding IP address as a 4-byte string.
224 <hex4>: the length of all content as a 4-char hexadecimal string
/system/core/libcutils/
Dprivate.h247 char * icpyalloc P((const char * string));
252 const char * scheck P((const char * string, const char * format));
/system/core/libusbhost/
Dusbhost.c340 char string[256]; in usb_device_get_string() local
346 string[0] = 0; in usb_device_get_string()
367 string[i - 1] = buffer[i]; in usb_device_get_string()
368 string[i - 1] = 0; in usb_device_get_string()
369 return strdup(string); in usb_device_get_string()
/system/core/debuggerd/
Ddebuggerd.c58 write_string(const char* file, const char* string) in write_string() argument
64 len = strlen(string); in write_string()
67 amt = write(fd, string, len); in write_string()
/system/core/libpixelflinger/codeflinger/
DARMAssemblerProxy.cpp64 void ARMAssemblerProxy::comment(const char* string) { in comment() argument
65 mTarget->comment(string); in comment()
DARMAssemblerProxy.h48 virtual void comment(const char* string);
DARMAssembler.h58 virtual void comment(const char* string);
DARMAssembler.cpp103 void ARMAssembler::comment(const char* string) in comment() argument
105 mComments.add(mPC, string); in comment()
DARMAssemblerInterface.h105 virtual void comment(const char* string) = 0;
/system/core/init/
Dreadme.txt210 write <path> <string> [ <string> ]*
/system/core/logcat/
Devent.logtags22 # 3: string
/system/core/libnetutils/
Difc_utils.c96 int string_to_ip(const char *string, struct sockaddr_storage *ss) { in string_to_ip() argument
109 ret = getaddrinfo(string, NULL, &hints, &ai); in string_to_ip()
/system/extras/tests/iptables/qtaguid/
DsocketTag.cpp80 std::string filename("/sys/module/xt_qtaguid/parameters/"); in writeModuleParam()