Searched defs:outstr (Results 1 - 11 of 11) sorted by relevance

/external/strace/
H A Dldt.c69 static char outstr[32]; local
71 sprintf(outstr, "entry_number:%d", desc.entry_number);
72 tcp->auxstr = outstr;
H A Dioprio.c29 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;
H A Dstream.c287 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;
H A Ddesc.c377 static char outstr[1024]; local
379 #define end_outstr (outstr + sizeof(outstr))
395 outptr = outstr;
425 if (outptr != outstr)
437 tcp->auxstr = outstr;
H A Dutil.c305 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) argument
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...]
H A Dfile.c253 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;
H A Dsignal.c185 static char outstr[128 + 8 * (NSIG * 2 / 3)]; local
194 s = stpcpy(outstr, prefix);
231 return outstr;
/external/chromium_org/native_client_sdk/src/libraries/error_handling/
H A Dstring_stream.c24 char* outstr; local
29 outstr = malloc(stream->length + len + 1);
31 memcpy(outstr, stream->data, stream->length);
35 stream->data = outstr;
/external/chromium_org/base/
H A Dpickle_unittest.cc37 std::string outstr; local
38 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
39 EXPECT_EQ(teststr, outstr);
137 std::string outstr; local
138 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
139 EXPECT_EQ("", outstr);
147 std::string outstr; local
148 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
149 EXPECT_EQ("", outstr);
157 std::string outstr; local
[all...]
/external/libmtp/src/
H A Dlibmtp.c2030 char outstr[256]; local
2031 snprintf(outstr, sizeof(outstr), "PTP Layer error %04x: %s", ptp_error, error_text);
2032 outstr[sizeof(outstr)-1] = '\0';
2033 add_error_to_errorstack(device, LIBMTP_ERROR_PTP_LAYER, outstr);
/external/valgrind/main/perf/
H A Dtinycc.c8748 static void parse_escape_string(CString *outstr, const uint8_t *buf, int is_long)
8841 cstr_ccat(outstr, c);
8843 cstr_wccat(outstr, c);
8847 cstr_ccat(outstr, '\0');
8849 cstr_wccat(outstr, '\0');
8746 parse_escape_string(CString *outstr, const uint8_t *buf, int is_long) argument

Completed in 1709 milliseconds