Home
last modified time | relevance | path

Searched refs:outstr (Results 1 – 8 of 8) sorted by relevance

/xnu-8020.140.41/tools/lldbmacros/
H A Dstructanalyze.py77 outstr = format_offset(begin_offset, sym_size)
79 outstr = format_offset(begin_offset, outerSize)
81 outstr = O.format("{:s}{VT.DarkRed}{{{:s}}}{VT.Default}",
86 outstr += O.format(" {0}", typedef)
88 outstr += O.format(" ({VT.DarkMagenta}anonymous {0}{VT.Default})", ctype)
90 outstr += O.format(" ({VT.DarkMagenta}{0} {1}{VT.Default})", ctype, symbol.GetName())
92 outstr += O.format(" {0} {{", memberName)
94 outstr += ") {"
96 print(outstr)
165 outstr = format_offset(m_offset, m_size)
[all …]
H A Dmacho.py317 outstr = self.name + '\n'
384 print(outstr)
/xnu-8020.140.41/tools/lldbmacros/plugins/
H A Dspeedtracer.py19 outstr = ''
33 outstr += "\nspeedtracer output:\n\n"
36 outstr += stacks
38 outstr += json.dumps(j)
40 outstr += "speedtracer replied with\n" + str(e.info())
43 return (status, outstr, further_cmds)
H A Dzprint_perf_log.py18 outstr = 'Nothing to be done here'
26 outstr += "Num of zones analyzed =" + str(num_zones) + "\n"
27 return (status, outstr, further_cmds)
H A Diosspeedtracer.py17 outstr = ''
25 outstr += ios_process.communicate(input=result_output)[0]
27 return (status, outstr, further_cmds)
/xnu-8020.140.41/bsd/vfs/
H A Dvfs_utfconv.c778 utf8_normalizestr(const u_int8_t* instr, size_t inlen, u_int8_t* outstr, in utf8_normalizestr() argument
800 outbufstart = outstr; in utf8_normalizestr()
806 if (outstr >= outbufend) { in utf8_normalizestr()
814 *outstr++ = (u_int8_t)byte; in utf8_normalizestr()
817 *outlen = outstr - outbufstart; in utf8_normalizestr()
819 if (outstr < outbufend) { in utf8_normalizestr()
820 *outstr++ = '\0'; in utf8_normalizestr()
864 outstr = outbufstart + uft8_bytes; in utf8_normalizestr()
/xnu-8020.140.41/bsd/sys/
H A Dutfconv.h192 utf8_normalizestr(const u_int8_t* instr, size_t inlen, u_int8_t* outstr,
/xnu-8020.140.41/tools/trace/
H A Dparse_ipc_trace.py752 (ret, outstr) = RunCommand(cmd)
754 … os.stderr.write("Couldn't convert raw trace file. ret=={:d}\nE: {:s}\n".format(ret, outstr))