Home | History | Annotate | Download | only in sanitizer_common

Lines Matching refs:uptr

26   bool GetObjectNameAndOffset(uptr addr, uptr *offset,
27 char filename[], uptr filename_size,
28 uptr *protection) {
37 uptr mmaped_size;
38 uptr len;
45 bool Next(uptr *start, uptr *end, uptr *offset,
46 char filename[], uptr filename_size, uptr *protection);
50 bool GetObjectNameAndOffset(uptr addr, uptr *offset,
51 char filename[], uptr filename_size,
52 uptr *protection);
60 static const uptr kProtectionRead = 1;
61 static const uptr kProtectionWrite = 2;
62 static const uptr kProtectionExecute = 4;
63 static const uptr kProtectionShared = 8;
70 bool IterateForObjectNameAndOffset(uptr addr, uptr *offset,
71 char filename[], uptr filename_size,
72 uptr *protection) {
74 uptr start, end, file_offset;
108 bool NextSegmentLoad(uptr *start, uptr *end, uptr *offset,
109 char filename[], uptr filename_size,
110 uptr *protection);