OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dumpData
(Results
1 - 12
of
12
) sorted by null
/frameworks/base/tools/preload2/src/com/android/preload/
DumpData.java
28
public class
DumpData
{
38
Map<String, String>
dumpData
;
46
* A cached value for the number of boot classpath classes (classloader value in
dumpData
is
51
public
DumpData
(String packageName, Map<String, String>
dumpData
, Date date) {
53
this.
dumpData
=
dumpData
;
68
return
dumpData
;
73
for (Map.Entry<String, String> e :
dumpData
.entrySet()) {
83
for (Map.Entry<String, String> e :
dumpData
.entrySet())
[
all
...]
DumpTableModel.java
25
* A table model for collected
DumpData
. This is both the internal storage as well as the model
30
private List<
DumpData
> data = new ArrayList<
DumpData
>();
32
public void addData(
DumpData
d) {
45
public List<
DumpData
> getData() {
78
DumpData
d = data.get(rowIndex);
85
return d.
dumpData
.size();
DumpDataIO.java
38
* Helper class for serialization and deserialization of a collection of
DumpData
objects to XML.
45
public static String serialize(Collection<
DumpData
> data) {
52
for (
DumpData
d : data) {
60
private static void serialize(
DumpData
d, StringBuilder sb) {
64
for (Map.Entry<String, String> e : d.
dumpData
.entrySet()) {
72
* Load a collection of
DumpData
objects from the given file.
74
public static Collection<
DumpData
> deserialize(File f) throws Exception {
90
Collection<
DumpData
> data = new LinkedList<
DumpData
>();
91
DumpData
openData = null
[
all
...]
/frameworks/base/libs/hwui/
JankTracker.h
65
void dump(int fd) {
dumpData
(mData, fd); }
79
static void
dumpData
(const ProfileData* data, int fd);
FrameInfoVisualizer.h
57
void
dumpData
(int fd);
JankTracker.cpp
284
dumpData
(data, fd);
287
void JankTracker::
dumpData
(const ProfileData* data, int fd) {
FrameInfoVisualizer.cpp
244
void FrameInfoVisualizer::
dumpData
(int fd) {
248
// last call to
dumpData
(). In other words if there's a
dumpData
(), draw frame,
249
//
dumpData
(), the last
dumpData
() should only log 1 frame.
/frameworks/base/tools/preload2/src/com/android/preload/actions/
ScanAllPackagesAction.java
22
import com.android.preload.
DumpData
;
53
DumpData
dumpData
= new
DumpData
(pkg, data, new Date());
54
dataTableModel.addData(
dumpData
);
ScanPackageAction.java
22
import com.android.preload.
DumpData
;
77
DumpData
dumpData
= new
DumpData
(pkg, data, new Date());
78
dataTableModel.addData(
dumpData
);
RunMonkeyAction.java
21
import com.android.preload.
DumpData
;
98
DumpData
dumpData
= new
DumpData
(pkg, data, new Date());
99
dataTableModel.addData(
dumpData
);
/frameworks/base/libs/hwui/renderthread/
RenderProxy.cpp
430
args->context->profiler().
dumpData
(args->fd);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java
[
all
...]
Completed in 736 milliseconds