HomeSort by relevance Sort by last modified time
    Searched refs:dump_type (Results 1 - 25 of 38) sorted by null

1 2

  /system/core/debuggerd/include/debuggerd/
client.h 25 #include "dump_type.h"
29 bool debuggerd_trigger_dump(pid_t pid, enum DebuggerdDumpType dump_type, unsigned int timeout_ms,
32 int dump_backtrace_to_file(pid_t tid, enum DebuggerdDumpType dump_type, int output_fd);
33 int dump_backtrace_to_file_timeout(pid_t tid, enum DebuggerdDumpType dump_type, int timeout_secs,
  /system/core/debuggerd/tombstoned/include/tombstoned/
tombstoned.h 23 #include "dump_type.h"
26 android::base::unique_fd* output_fd, DebuggerdDumpType dump_type);
  /system/core/debuggerd/tombstoned/
tombstoned_client.cpp 34 DebuggerdDumpType dump_type) {
36 socket_local_client((dump_type != kDebuggerdJavaBacktrace ? kTombstonedCrashSocketName
48 packet.packet.dump_request.dump_type = dump_type;
intercept_manager.cpp 65 << intercept->dump_type << " terminated: " << reason;
75 if (request.dump_type < 0 || request.dump_type > kDebuggerdJavaBacktrace) {
128 intercept->dump_type = intercept_request.dump_type;
136 intercept_request.dump_type);
156 << intercept_request.dump_type;
192 bool InterceptManager::GetIntercept(pid_t pid, DebuggerdDumpType dump_type,
199 if (dump_type == kDebuggerdAnyIntercept) {
200 LOG(INFO) << "found registered intercept of type " << it->second->dump_type
    [all...]
intercept_manager.h 28 #include "dump_type.h"
44 DebuggerdDumpType dump_type = kDebuggerdNativeBacktrace; member in struct:Intercept
56 bool GetIntercept(pid_t pid, DebuggerdDumpType dump_type, android::base::unique_fd* out_fd);
  /external/libchrome/base/trace_event/
memory_dump_request_args.cc 13 const char* MemoryDumpTypeToString(const MemoryDumpType& dump_type) {
14 switch (dump_type) {
memory_dump_request_args.h 66 MemoryDumpType dump_type; member in struct:base::trace_event::MemoryDumpType::MemoryDumpLevelOfDetail::MemoryDumpRequestArgs
106 BASE_EXPORT const char* MemoryDumpTypeToString(const MemoryDumpType& dump_type);
memory_dump_manager.h 115 void RequestGlobalDump(MemoryDumpType dump_type,
120 void RequestGlobalDump(MemoryDumpType dump_type,
memory_dump_manager.cc 451 MemoryDumpType dump_type,
473 kTraceCategory, "GlobalMemoryDump", TRACE_ID_LOCAL(guid), "dump_type",
474 MemoryDumpTypeToString(dump_type), "level_of_detail",
480 MemoryDumpRequestArgs args = {guid, dump_type, level_of_detail};
485 MemoryDumpType dump_type,
487 RequestGlobalDump(dump_type, level_of_detail, MemoryDumpCallback());
776 MemoryDumpTypeToString(pmd_async_state->req_args.dump_type);
    [all...]
  /system/core/debuggerd/
protocol.h 24 #include "dump_type.h"
48 DebuggerdDumpType dump_type; member in struct:DumpRequest
63 DebuggerdDumpType dump_type; member in struct:InterceptRequest
crash_dump.cpp 231 static void ParseArgs(int argc, char** argv, pid_t* pseudothread_tid, DebuggerdDumpType* dump_type) {
248 *dump_type = static_cast<DebuggerdDumpType>(dump_type_int);
371 DebuggerdDumpType dump_type; local
375 ParseArgs(argc, argv, &pseudothread_tid, &dump_type);
492 LOG(INFO) << "obtaining output fd from tombstoned, type: " << dump_type;
494 tombstoned_connect(g_target_thread, &g_tombstoned_socket, &g_output_fd, dump_type);
debuggerd_test.cpp 94 InterceptRequest req = {.pid = target_pid, .dump_type = intercept_type};
680 __attribute__((noinline)) extern "C" bool raise_debugger_signal(DebuggerdDumpType dump_type) {
686 if (dump_type != kDebuggerdNativeBacktrace && dump_type != kDebuggerdTombstone) {
690 siginfo.si_value.sival_int = dump_type == kDebuggerdNativeBacktrace;
704 static const auto dump_type = kDebuggerdTombstone;
707 raise_debugger_signal(dump_type);
712 StartIntercept(&output_fd, dump_type);
727 static const auto dump_type = kDebuggerdNativeBacktrace;
730 raise_debugger_signal(dump_type);
    [all...]
  /system/core/debuggerd/client/
debuggerd_client.cpp 45 static bool send_signal(pid_t pid, const DebuggerdDumpType dump_type) {
46 const int signal = (dump_type == kDebuggerdJavaBacktrace) ? SIGQUIT : DEBUGGER_SIGNAL;
48 val.sival_int = (dump_type == kDebuggerdNativeBacktrace) ? 1 : 0;
65 bool debuggerd_trigger_dump(pid_t pid, DebuggerdDumpType dump_type, unsigned int timeout_ms,
109 InterceptRequest req = {.pid = pid, .dump_type = dump_type};
161 if (!send_signal(pid, dump_type)) {
230 int dump_backtrace_to_file(pid_t tid, DebuggerdDumpType dump_type, int fd) {
231 return dump_backtrace_to_file_timeout(tid, dump_type, 0, fd);
234 int dump_backtrace_to_file_timeout(pid_t tid, DebuggerdDumpType dump_type, int timeout_secs
    [all...]
  /external/google-breakpad/src/client/windows/common/
ipc_protocol.h 107 dump_type(MiniDumpNormal),
130 dump_type(arg_dump_type),
148 MINIDUMP_TYPE dump_type; member in struct:google_breakpad::ProtocolMessage
  /external/google-breakpad/src/client/windows/crash_generation/
client_info.h 51 MINIDUMP_TYPE dump_type,
61 MINIDUMP_TYPE dump_type() const { return dump_type_; } function in class:google_breakpad::ClientInfo
crash_generation_client.h 66 MINIDUMP_TYPE dump_type,
70 MINIDUMP_TYPE dump_type,
crash_generation_client.cc 95 MINIDUMP_TYPE dump_type,
99 dump_type_(dump_type),
115 MINIDUMP_TYPE dump_type,
119 dump_type_(dump_type),
client_info.cc 40 MINIDUMP_TYPE dump_type,
47 dump_type_(dump_type),
minidump_generator.h 54 // SetFullDumpFile or GenerateFullDumpFile() dump_type must include
63 const MINIDUMP_TYPE dump_type,
crash_generation_server.cc 429 msg_.dump_type,
923 client.dump_type(),
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test.h 100 dump_type(FILE *fp, struct lp_type type);
lp_test_conv.c 73 dump_type(fp, src_type);
76 dump_type(fp, dst_type);
89 dump_type(fp, src_type);
92 dump_type(fp, dst_type);
  /external/google-breakpad/src/client/windows/handler/
exception_handler.h 183 MINIDUMP_TYPE dump_type,
194 MINIDUMP_TYPE dump_type,
292 MINIDUMP_TYPE dump_type,
exception_handler.cc 66 MINIDUMP_TYPE dump_type,
74 dump_type,
86 MINIDUMP_TYPE dump_type,
94 dump_type,
108 // The dump_type, pipe_name and custom_info that are passed in to Initialize()
115 MiniDumpNormal, // dump_type - not used
145 MINIDUMP_TYPE dump_type,
159 dump_type_ = dump_type;
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 67 dump_type(self._instance + '.' + variable.name, variable.type)
146 dump_type(self.instance + '[%i]' % i, type_traits.base_type(self.type))
160 def dump_type(instance, type_): function

Completed in 182 milliseconds

1 2