Home | History | Annotate | Download | only in source

Lines Matching refs:HEX

38 #define RAW_HEXBASE     std::setfill('0') << std::hex << std::right
49 #define HEX(x) HEXBASE << std::setw(sizeof(x)*2) << (x)
163 // TTTT is hex thread ID
1234 each argument with "arg" hex encoded (two 0-9a-f chars?).
1235 Why we need BOTH a "len" and a hex encoded "arg" is beyond me - either
1308 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "non-hex char in arg on 'A' pkt");
1446 ostrm << std::hex << th;
1469 sequence of letters encoded in as 2-hex-chars-per-letter. */
1488 // Return "OK" as a ASCII hex byte stream if things go wrong
1573 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "non-hex char in payload of qRcmd packet");
1634 rep << "QC" << std::hex << pid;
1649 rep << std::hex << pid;
1691 case Hex: ostrm << "format:hex;"; break;
2278 The VARIABLE=VALUE part is sent hex-encoded so chracters like '#' with special
2294 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "non-hex char in arg on 'QEnvironmentHexEncoded' pkt");
2304 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "non-hex char in arg on 'QEnvironmentHexEncoded' pkt");
2393 // Output the register number as 'NN:VVVVVVVV;' where NN is a 2 bytes HEX
2394 // gdb register number, and VVVVVVVV is the correct number of hex bytes
2449 ostrm << std::hex << "thread:" << tid << ';';
2457 ostrm << std::hex << "name:" << thread_name << ';';
2460 // the thread name contains special chars, send as hex bytes
2461 ostrm << std::hex << "hexname:";
2473 ostrm << std::hex << "qaddr:" << thread_ident_info.dispatch_qaddr << ';';
2478 // a listc of hex thread IDs separated by commas:
2490 ostrm << std::hex << "threads:";
2496 ostrm << std::hex << th;
2526 ostrm << "metype:" << std::hex << tid_stop_info.details.exception.type << ";";
2527 ostrm << "mecount:" << std::hex << tid_stop_info.details.exception.data_count << ";";
2529 ostrm << "medata:" << std::hex << tid_stop_info.details.exception.data[i] << ";";
2653 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "Uneven # of hex chars for data in M packet");
2673 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "Invalid hex byte in M packet");
2929 // XXXXXX: big endian hex chars
2933 // XXXXXX: hex address of the newly allocated memory
3141 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "non-hex char in arg on 'vAttachWait' pkt");
3153 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "non-hex char in arg on 'vAttachOrWait' pkt");
3164 return HandlePacket_ILLFORMED (__FILE__, __LINE__, p, "non-hex char in arg on 'vAttachName' pkt");
3174 attach_pid = strtoul (p, &end, 16); // PID will be in hex, so use base 16 to decode
3214 The thread number is in hex? */
3459 n and r are hex strings. */
3600 ostrm << "start:" << std::hex << region_info.addr << ';';
3603 ostrm << "size:" << std::hex << region_info.size << ';';
3638 if (iss >> std::hex >> int_value)
3684 if (iss >> std::hex >> int_value)
3968 // Note that all numeric values returned by qProcessInfo are hex encoded,
3983 rep << "pid:" << std::hex << pid << ";";
3997 rep << "parent-pid:" << std::hex << proc_kinfo.kp_eproc.e_ppid << ";";
3998 rep << "real-uid:" << std::hex << proc_kinfo.kp_eproc.e_pcred.p_ruid << ";";
3999 rep << "real-gid:" << std::hex << proc_kinfo.kp_eproc.e_pcred.p_rgid << ";";
4000 rep << "effective-uid:" << std::hex << proc_kinfo.kp_eproc.e_ucred.cr_uid << ";";
4002 rep << "effective-gid:" << std::hex << proc_kinfo.kp_eproc.e_ucred.cr_groups[0] << ";";
4015 rep << "cputype:" << std::hex << cputype << ";";
4027 rep << "cpusubtype:" << std::hex << cpusubtype << ';';