OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DebugData
(Results
1 - 11
of
11
) sorted by null
/bionic/libc/malloc_debug/
FreeTrackData.h
43
class
DebugData
;
52
void Add(
DebugData
& debug, const Header* header);
54
void VerifyAll(
DebugData
& debug);
59
void LogFreeError(
DebugData
& debug, const Header* header, const uint8_t* pointer);
60
void VerifyAndFree(
DebugData
& debug, const Header* header, const void* pointer);
GuardData.h
40
class
DebugData
;
66
bool Valid(
DebugData
& debug, const Header* header);
68
void LogFailure(
DebugData
& debug, const Header* header);
85
bool Valid(
DebugData
& debug, const Header* header);
87
void LogFailure(
DebugData
& debug, const Header* header);
TrackData.h
43
class
DebugData
;
58
void GetInfo(
DebugData
& debug, uint8_t** info, size_t* overall_size,
61
void DisplayLeaks(
DebugData
& debug);
DebugData.cpp
33
#include "
DebugData
.h"
40
bool
DebugData
::Initialize() {
86
void
DebugData
::PrepareFork() {
92
void
DebugData
::PostForkParent() {
98
void
DebugData
::PostForkChild() {
DebugData.h
46
class
DebugData
{
48
DebugData
() = default;
49
~
DebugData
() = default;
103
DISALLOW_COPY_AND_ASSIGN(
DebugData
);
debug_disable.cpp
31
#include "
DebugData
.h"
35
extern
DebugData
* g_debug;
GuardData.cpp
38
#include "
DebugData
.h"
83
bool FrontGuardData::Valid(
DebugData
& debug, const Header* header) {
87
void FrontGuardData::LogFailure(
DebugData
& debug, const Header* header) {
95
bool RearGuardData::Valid(
DebugData
& debug, const Header* header) {
99
void RearGuardData::LogFailure(
DebugData
& debug, const Header* header) {
FreeTrackData.cpp
33
#include "
DebugData
.h"
45
void FreeTrackData::LogFreeError(
DebugData
& debug, const Header* header,
66
void FreeTrackData::VerifyAndFree(
DebugData
& debug, const Header* header,
97
void FreeTrackData::Add(
DebugData
& debug, const Header* header) {
121
void FreeTrackData::VerifyAll(
DebugData
& debug) {
TrackData.cpp
41
#include "
DebugData
.h"
92
void TrackData::DisplayLeaks(
DebugData
& debug) {
113
void TrackData::GetInfo(
DebugData
& debug, uint8_t** info, size_t* overall_size,
Android.mk
6
DebugData
.cpp \
malloc_debug.cpp
43
#include "
DebugData
.h"
51
DebugData
* g_debug;
199
DebugData
* debug = new
DebugData
();
Completed in 63 milliseconds