HomeSort by relevance Sort by last modified time
    Searched full:statline (Results 1 - 5 of 5) sorted by null

  /system/core/toolbox/
ps.c 35 char statline[1024]; local
47 sprintf(statline, "/proc/%d", pid);
48 stat(statline, &stats);
51 sprintf(statline, "/proc/%d/task/%d/stat", pid, tid);
54 sprintf(statline, "/proc/%d/stat", pid);
67 fd = open(statline, O_RDONLY);
69 r = read(fd, statline, 1023);
72 statline[r] = 0;
74 ptr = statline;
  /external/apache-http/src/org/apache/http/message/
BasicLineFormatter.java 221 * @param statline the status line to format
228 public final static String formatStatusLine(final StatusLine statline,
232 return formatter.formatStatusLine(null, statline).toString();
238 final StatusLine statline) {
239 if (statline == null) {
245 doFormatStatusLine(result, statline);
257 * @param statline the status line to format, never <code>null</code>
260 final StatusLine statline) {
262 int len = estimateProtocolVersionLen(statline.getProtocolVersion())
264 final String reason = statline.getReasonPhrase()
    [all...]
LineFormatter.java 119 * @param statline the status line to format
126 StatusLine statline)
  /system/core/libcutils/
sched_policy.c 228 char statline[1024]; local
237 int rc = read(fd, statline, 1023);
239 statline[rc] = 0;
240 char *p = statline;
243 for (p = statline; *p != '('; p++);
  /prebuilt/sdk/8/
android.jar 

Completed in 982 milliseconds