/external/strace/ |
ldt.c | 69 static char outstr[32]; local 71 sprintf(outstr, "entry_number:%d", desc.entry_number); 72 tcp->auxstr = outstr;
|
ioprio.c | 29 static char outstr[256]; local 37 sprintf(outstr, "IOPRIO_PRIO_VALUE(%s,%d)", str, data); 39 sprintf(outstr, "IOPRIO_PRIO_VALUE(%#x /* %s */,%d)", 42 return outstr;
|
stream.c | 287 static char outstr[1024]; local 289 #define end_outstr (outstr + sizeof(outstr)) 313 outptr = outstr; 324 if (outptr == outstr) { 346 if (outptr != outstr /* && outptr < end_outstr - 1 (always true)*/) 352 outptr = stpcpy(outptr, outptr == outstr ? "left " : ", left "); 357 if (outptr == outstr) 360 tcp->auxstr = outstr;
|
desc.c | 377 static char outstr[1024]; local 379 #define end_outstr (outstr + sizeof(outstr)) 395 outptr = outstr; 425 if (outptr != outstr) 437 tcp->auxstr = outstr;
|
util.c | 305 static char outstr[1024]; local 309 outptr = stpcpy(outstr, prefix); 328 return outstr; 426 * Write up to (3 + `size' * 4) bytes to `outstr' buffer. 434 string_quote(const char *instr, char *outstr, long len, int size) 437 char *s = outstr; 590 char *outstr; local 594 outstr = alloca(4 * n); /* 4*(n-1) + 3 for quotes and NUL */ 595 string_quote(path, outstr, -1, n); 596 tprints(outstr); 618 static char *outstr; local [all...] |
file.c | 253 static char outstr[(1 + ARRAY_SIZE(open_mode_flags)) * sizeof("O_LARGEFILE")]; local 260 p = stpcpy(outstr, "flags"); 267 return outstr; 277 return outstr; 284 return outstr; [all...] |
signal.c | 185 static char outstr[128 + 8 * (NSIG * 2 / 3)]; local 194 s = stpcpy(outstr, prefix); 231 return outstr; [all...] |
/external/chromium_org/native_client_sdk/src/libraries/error_handling/ |
string_stream.c | 24 char* outstr; local 29 outstr = malloc(stream->length + len + 1); 31 memcpy(outstr, stream->data, stream->length); 35 stream->data = outstr;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
FloatArrayToStrFilter.java | 61 String outstr = Arrays.toString(array); local 65 stringFrame.setValue(outstr);
|
/system/core/libcutils/ |
dir_hash.c | 178 char outstr[NAME_MAX + 100]; local 202 outstr, sizeof(outstr)); 230 sprintf(keep, "%s %s\n", name, outstr);
|
/external/chromium_org/base/ |
pickle_unittest.cc | 36 std::string outstr; local 37 EXPECT_TRUE(pickle.ReadString(&iter, &outstr)); 38 EXPECT_EQ(teststr, outstr); 131 std::string outstr; local 132 EXPECT_TRUE(pickle.ReadString(&iter, &outstr)); 133 EXPECT_EQ("", outstr); 141 std::string outstr; local 142 EXPECT_TRUE(pickle.ReadString(&iter, &outstr)); 143 EXPECT_EQ("", outstr); 151 std::string outstr; local [all...] |
/external/libmtp/src/ |
libmtp.c | 2030 char outstr[256]; local [all...] |