OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NdkCrashParser
(Results
1 - 3
of
3
) sorted by null
/ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.h
22
typedef struct
NdkCrashParser
NdkCrashParser
;
24
/* Creates and initializes
NdkCrashParser
descriptor.
33
* Pointer to the initialized
NdkCrashParser
descriptor on success, or NULL on
36
NdkCrashParser
* CreateNdkCrashParser(FILE* out_handle, const char* sym_root);
38
/* Destroys an
NdkCrashParser
descriptor.
40
* parser -
NdkCrashParser
descriptor, created and initialized with a call to
41
*
NdkCrashParser
routine.
43
void DestroyNdkCrashParser(
NdkCrashParser
* parser);
47
* parser -
NdkCrashParser
descriptor, created and initialized with a call t
[
all
...]
ndk-stack-parser.c
44
struct
NdkCrashParser
{
84
* parser -
NdkCrashParser
descriptor, created and initialized with a call to
85
*
NdkCrashParser
routine.
91
static int ParseFrame(
NdkCrashParser
* parser, const char* frame);
126
NdkCrashParser
*
129
NdkCrashParser
* parser;
131
parser = (
NdkCrashParser
*)calloc(sizeof(*parser), 1);
155
DestroyNdkCrashParser(
NdkCrashParser
* parser)
170
ParseLine(
NdkCrashParser
* parser, const char* line)
275
ParseFrame(
NdkCrashParser
* parser, const char* frame
[
all
...]
ndk-stack.c
70
NdkCrashParser
* parser = CreateNdkCrashParser(stdout, sym_path);
Completed in 1265 milliseconds