Searched refs:dump_path (Results 1 - 25 of 28) sorted by relevance

12

/external/google-breakpad/src/client/solaris/handler/
H A Dexception_handler.h86 // file is <dump_path>/<minidump_id>.dmp. context is the parameter supplied
100 typedef bool (*MinidumpCallback)(const char *dump_path,
108 // minidump. Minidump files will be written to dump_path, and the optional
113 ExceptionHandler(const string &dump_path,
120 string dump_path() const { return dump_path_; } function in class:google_breakpad::ExceptionHandler
121 void set_dump_path(const string &dump_path) { argument
122 dump_path_ = dump_path;
132 static bool WriteMinidump(const string &dump_path,
168 // The directory in which a minidump will be written, set by the dump_path
H A Dexception_handler.cc62 ExceptionHandler::ExceptionHandler(const string &dump_path, argument
72 set_dump_path(dump_path);
119 bool ExceptionHandler::WriteMinidump(const string &dump_path, argument
122 ExceptionHandler handler(dump_path, NULL, callback,
H A Dexception_handler_test.cc94 static bool MinidumpCallback(const char *dump_path, argument
/external/google-breakpad/src/client/mac/handler/
H A Dexception_handler.h102 // Minidump files will be written to dump_path, and the optional callback
109 ExceptionHandler(const string &dump_path,
123 string dump_path() const { return dump_path_; } function in class:google_breakpad::ExceptionHandler
124 void set_dump_path(const string &dump_path) { argument
125 dump_path_ = dump_path;
140 static bool WriteMinidump(const string &dump_path, MinidumpCallback callback, argument
142 return WriteMinidump(dump_path, false, callback, callback_context);
145 static bool WriteMinidump(const string &dump_path,
154 const std::string &dump_path,
H A Dexception_handler.cc223 ExceptionHandler::ExceptionHandler(const string &dump_path, argument
242 set_dump_path(dump_path);
307 bool ExceptionHandler::WriteMinidump(const string &dump_path, argument
311 ExceptionHandler handler(dump_path, NULL, callback, callback_context, false,
319 const string &dump_path,
326 string dump_filename = generator.UniqueNameInDirectory(dump_path, &dump_id);
343 return callback(dump_path.c_str(), dump_id.c_str(),
317 WriteMinidumpForChild(mach_port_t child, mach_port_t child_blamed_thread, const string &dump_path, MinidumpCallback callback, void* callback_context) argument
/external/google-breakpad/src/client/mac/crash_generation/
H A Dcrash_generation_server.cc49 const std::string &dump_path)
57 dump_dir_(dump_path.empty() ? "/tmp" : dump_path),
118 std::string dump_path; local
123 dump_path = generator.UniqueNameInDirectory(dump_dir_, NULL);
131 result = generator.Write(dump_path.c_str());
137 dump_callback_(dump_context_, client, dump_path);
40 CrashGenerationServer( const char *mach_port_name, FilterCallback filter, void *filter_context, OnClientDumpRequestCallback dump_callback, void *dump_context, OnClientExitingCallback exit_callback, void *exit_context, bool generate_dumps, const std::string &dump_path) argument
H A DInspector.h94 string dump_path(minidump_dir_path_);
98 (MinidumpGenerator::UniqueNameInDirectory(dump_path, &next_minidump_id));
H A Dcrash_generation_server.h84 // dump_path: Path for generating dumps; required only if true is
94 const std::string &dump_path);
/external/google-breakpad/src/processor/testdata/
H A Dlinux_test_app.cc54 static bool callback(const char *dump_path, const char *id, argument
H A Dtest_app.cc41 static bool callback(const wchar_t *dump_path, const wchar_t *id, argument
/external/google-breakpad/src/client/windows/handler/
H A Dexception_handler.h116 // file is <dump_path>\<minidump_id>.dmp. context is the parameter supplied
138 typedef bool (*MinidumpCallback)(const wchar_t* dump_path,
164 // minidump. Minidump files will be written to dump_path, and the optional
167 ExceptionHandler(const wstring& dump_path,
178 ExceptionHandler(const wstring& dump_path,
189 ExceptionHandler(const wstring& dump_path,
210 ExceptionHandler(const wstring& dump_path,
220 wstring dump_path() const { return dump_path_; } function in class:google_breakpad::ExceptionHandler
221 void set_dump_path(const wstring &dump_path) { argument
222 dump_path_ = dump_path;
[all...]
H A Dexception_handler.cc61 ExceptionHandler::ExceptionHandler(const wstring& dump_path, argument
69 Initialize(dump_path,
81 ExceptionHandler::ExceptionHandler(const wstring& dump_path, argument
89 Initialize(dump_path,
102 const wstring& dump_path,
110 Initialize(dump_path,
122 ExceptionHandler::ExceptionHandler(const wstring &dump_path, argument
127 Initialize(dump_path,
140 const wstring& dump_path,
246 set_dump_path(dump_path);
101 ExceptionHandler( const wstring& dump_path, FilterCallback filter, MinidumpCallback callback, void* callback_context, int handler_types, CrashGenerationClient* crash_generation_client) argument
139 Initialize( const wstring& dump_path, FilterCallback filter, MinidumpCallback callback, void* callback_context, int handler_types, MINIDUMP_TYPE dump_type, const wchar_t* pipe_name, HANDLE pipe_handle, CrashGenerationClient* crash_generation_client, const CustomClientInfo* custom_info) argument
765 WriteMinidump(const wstring &dump_path, MinidumpCallback callback, void* callback_context) argument
774 WriteMinidumpForChild(HANDLE child, DWORD child_blamed_thread, const wstring& dump_path, MinidumpCallback callback, void* callback_context) argument
[all...]
/external/google-breakpad/src/client/linux/crash_generation/
H A Dcrash_generation_server.h66 // Parameter dump_path: Path for generating dumps; required only if true is
74 const string* dump_path);
H A Dcrash_generation_server.cc63 const string* dump_path) :
72 if (dump_path)
73 dump_dir_ = *dump_path;
56 CrashGenerationServer( const int listen_fd, OnClientDumpRequestCallback dump_callback, void* dump_context, OnClientExitingCallback exit_callback, void* exit_context, bool generate_dumps, const string* dump_path) argument
/external/google-breakpad/src/client/linux/handler/
H A Dexception_handler.h168 static bool WriteMinidump(const string& dump_path,
185 const string& dump_path,
H A Dexception_handler.cc596 bool ExceptionHandler::WriteMinidump(const string& dump_path, argument
599 MinidumpDescriptor descriptor(dump_path);
731 const string& dump_path,
735 MinidumpDescriptor descriptor(dump_path);
729 WriteMinidumpForChild(pid_t child, pid_t child_blamed_thread, const string& dump_path, MinidumpCallback callback, void* callback_context) argument
/external/google-breakpad/src/client/windows/crash_generation/
H A Dminidump_generator.h56 MinidumpGenerator(const std::wstring& dump_path,
76 bool GenerateDumpFile(std::wstring* dump_path);
94 // dump file path in the dump_path parameter if dump generation
H A Dcrash_generation_server.cc109 const std::wstring* dump_path)
124 dump_path_(dump_path ? *dump_path : L""),
883 std::wstring dump_path; local
885 if (!GenerateDump(client_info, &dump_path)) {
892 std::wstring* ptr_dump_path = (dump_path == L"") ? NULL : &dump_path;
900 std::wstring* dump_path) {
925 if (!dump_generator.GenerateDumpFile(dump_path)) {
97 CrashGenerationServer( const std::wstring& pipe_name, SECURITY_ATTRIBUTES* pipe_sec_attrs, OnClientConnectedCallback connect_callback, void* connect_context, OnClientDumpRequestCallback dump_callback, void* dump_context, OnClientExitedCallback exit_callback, void* exit_context, OnClientUploadRequestCallback upload_request_callback, void* upload_context, bool generate_dumps, const std::wstring* dump_path) argument
899 GenerateDump(const ClientInfo& client, std::wstring* dump_path) argument
H A Dcrash_generation_server.h82 // Parameter dump_path: Path for generating dumps; required only if true is
95 const std::wstring* dump_path);
203 bool GenerateDump(const ClientInfo& client, std::wstring* dump_path);
H A Dminidump_generator.cc252 const std::wstring& dump_path,
263 dump_path_(dump_path),
457 bool MinidumpGenerator::GenerateDumpFile(wstring* dump_path) { argument
481 *dump_path = dump_file_path;
251 MinidumpGenerator( const std::wstring& dump_path, const HANDLE process_handle, const DWORD process_id, const DWORD thread_id, const DWORD requesting_thread_id, EXCEPTION_POINTERS* exception_pointers, MDRawAssertionInfo* assert_info, const MINIDUMP_TYPE dump_type, const bool is_client_pointers) argument
/external/google-breakpad/src/client/windows/unittests/
H A Dexception_handler_test.cc96 const std::wstring *dump_path);
98 static bool DumpCallback(const wchar_t* dump_path,
156 const wstring *dump_path) {
157 dump_file = *dump_path;
163 bool ExceptionHandlerTest::DumpCallback(const wchar_t* dump_path, argument
169 dump_file = dump_path;
236 wstring dump_path(temp_path_);
239 NULL, true, &dump_path);
307 wstring dump_path(temp_path_);
310 NULL, true, &dump_path);
153 ClientDumpCallback( void *dump_context, const google_breakpad::ClientInfo *client_info, const wstring *dump_path) argument
[all...]
H A Dexception_handler_death_test.cc103 bool MinidumpWrittenCallback(const wchar_t* dump_path, argument
109 if (succeeded && DoesPathExist(dump_path)) {
146 const std::wstring *dump_path) {
201 std::wstring dump_path(temp_path_);
204 NULL, true, &dump_path);
224 std::wstring dump_path(temp_path_);
227 NULL, true, &dump_path);
144 clientDumpCallback(void *dump_context, const google_breakpad::ClientInfo *client_info, const std::wstring *dump_path) argument
H A Dexception_handler_nesting_test.cc87 // file is <dump_path>\<minidump_id>.dmp. context is the parameter supplied
110 bool MinidumpWrittenCallback(const wchar_t* dump_path, argument
119 DoesPathExist(dump_path)) {
/external/google-breakpad/src/client/windows/tests/crash_generation_app/
H A Dcrash_generation_app.cc180 bool ShowDumpResults(const wchar_t* dump_path, argument
219 const wstring* dump_path) {
285 std::wstring dump_path = L"C:\\Dumps\\"; local
287 if (_wmkdir(dump_path.c_str()) && (errno != EEXIST)) {
303 &dump_path);
217 ShowClientCrashed(void* context, const ClientInfo* client_info, const wstring* dump_path) argument
/external/syslinux/com32/hdt/
H A Dhdt-common.c117 } else if (!strncmp(argv[i], "dump_path=", 10)) {
118 strlcpy(hardware->dump_path, argv[i] + 10,
119 sizeof(hardware->dump_path));
235 memset(hardware->dump_path, 0, sizeof hardware->dump_path);
240 strcat(hardware->dump_path, "hdt");

Completed in 584 milliseconds

12