Searched refs:strp (Results 1 – 7 of 7) sorted by relevance
/system/core/logd/ |
D | LogWhiteBlackList.cpp | 38 void Prune::format(char **strp) { in format() argument 41 asprintf(strp, "%u/%u", mUid, mPid); in format() 43 asprintf(strp, "%u", mUid); in format() 46 asprintf(strp, "/%u", mPid); in format() 48 asprintf(strp, "/"); in format() 170 void PruneList::format(char **strp) { in format() argument 171 if (*strp) { in format() 172 free(*strp); in format() 173 *strp = NULL; in format() 210 *strp = strdup(string.string()); in format()
|
D | LogBuffer.h | 70 void formatStatistics(char **strp, uid_t uid, unsigned int logMask); 78 void formatPrune(char **strp) { mPrune.format(strp); } in formatPrune() argument
|
D | LogWhiteBlackList.h | 47 void format(char **strp); 70 void format(char **strp);
|
D | CommandListener.cpp | 194 static void package_string(char **strp) { in package_string() argument 195 const char *a = *strp; in package_string() 206 char *b = *strp; in package_string() 207 *strp = NULL; in package_string() 208 asprintf(strp, fmt, a); in package_string()
|
D | LogBuffer.cpp | 752 void LogBuffer::formatStatistics(char **strp, uid_t uid, unsigned int logMask) { in formatStatistics() argument 755 stats.format(strp, uid, logMask); in formatStatistics()
|
D | LogStatistics.h | 335 void format(char **strp, uid_t uid, unsigned int logMask);
|
/system/core/toolbox/ |
D | ps.c | 15 static char *nexttoksep(char **strp, char *sep) in nexttoksep() argument 17 char *p = strsep(strp,sep); in nexttoksep() 20 static char *nexttok(char **strp) in nexttok() argument 22 return nexttoksep(strp, " "); in nexttok()
|