OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PointerSet
(Results
1 - 9
of
9
) sorted by null
/dalvik/vm/
PointerSet.h
23
struct
PointerSet
; /* private */
26
* Allocate a new
PointerSet
.
30
PointerSet
* dvmPointerSetAlloc(int initialSize);
33
* Free up a
PointerSet
.
35
void dvmPointerSetFree(
PointerSet
* pSet);
40
void dvmPointerSetClear(
PointerSet
* pSet);
45
int dvmPointerSetGetCount(const
PointerSet
* pSet);
50
const void* dvmPointerSetGetEntry(const
PointerSet
* pSet, int i);
58
bool dvmPointerSetAddEntry(
PointerSet
* pSet, const void* ptr);
63
bool dvmPointerSetRemoveEntry(
PointerSet
* pSet, const void* ptr)
[
all
...]
PointerSet.cpp
24
struct
PointerSet
{
34
static bool verifySorted(
PointerSet
* pSet)
51
* Allocate a new
PointerSet
.
55
PointerSet
* dvmPointerSetAlloc(int initialSize)
57
PointerSet
* pSet = (
PointerSet
*)calloc(1, sizeof(
PointerSet
));
73
* Free up a
PointerSet
.
75
void dvmPointerSetFree(
PointerSet
* pSet)
90
void dvmPointerSetClear(
PointerSet
* pSet
[
all
...]
AllocTracker.cpp
288
* Dump the contents of a
PointerSet
full of character pointers.
290
static void dumpStringTable(
PointerSet
* strings)
322
static bool populateStringTables(
PointerSet
* classNames,
323
PointerSet
* methodNames,
PointerSet
* fileNames)
373
const
PointerSet
* classNames, const
PointerSet
* methodNames,
374
const
PointerSet
* fileNames)
444
static size_t computeStringTableSize(
PointerSet
* strings)
481
static size_t outputStringTable(
PointerSet
* strings, u1* ptr
[
all
...]
Globals.h
723
PointerSet
* preciseMethods;
Dvm.mk
104
PointerSet
.cpp \
/dalvik/vm/analysis/
VfyBasicBlock.h
24
#include "
PointerSet
.h"
45
PointerSet
* predecessors; /* set of basic blocks that can flow here */
VfyBasicBlock.cpp
127
PointerSet
* preds = targetBlock->predecessors;
259
PointerSet
* preds = block->predecessors;
Liveness.cpp
208
PointerSet
* preds = workBlock->predecessors;
/dalvik/vm/reflect/
Proxy.cpp
37
PointerSet
** pThrows);
38
static void updateExceptionClassList(const Method* method,
PointerSet
* throws);
444
PointerSet
* commonThrows = NULL;
600
static bool createExceptionClassList(const Method* method,
PointerSet
** pThrows)
641
static void updateExceptionClassList(const Method* method,
PointerSet
* throws)
[
all
...]
Completed in 600 milliseconds