HomeSort by relevance Sort by last modified time
    Searched full:snapshot (Results 1 - 25 of 1671) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iputils/
SNAPSHOT.h 1 static char SNAPSHOT[] = "s20121221";
  /external/iproute2/include/
SNAPSHOT.h 1 static const char SNAPSHOT[] = "120521";
  /external/chromium_org/v8/src/
snapshot-empty.cc 9 #include "src/snapshot.h"
14 const byte Snapshot::data_[] = { 0 };
15 const byte* Snapshot::raw_data_ = NULL;
16 const int Snapshot::size_ = 0;
17 const int Snapshot::raw_size_ = 0;
18 const byte Snapshot::context_data_[] = { 0 };
19 const byte* Snapshot::context_raw_data_ = NULL;
20 const int Snapshot::context_size_ = 0;
21 const int Snapshot::context_raw_size_ = 0;
23 const int Snapshot::new_space_used_ = 0
    [all...]
heap-snapshot-generator-inl.h 8 #include "src/heap-snapshot-generator.h"
15 return &snapshot()->entries()[from_index_];
19 HeapSnapshot* HeapGraphEdge::snapshot() const { function in class:v8::internal::HeapGraphEdge
20 return to_entry_->snapshot();
  /sdk/
release.md 3 By default builds use the -SNAPSHOT version.
4 To run a release build that remove the SNAPSHOT qualifier, run:
  /external/chromium_org/chrome/browser/install_verification/win/
loaded_modules_snapshot.cc 11 bool GetLoadedModulesSnapshot(std::vector<HMODULE>* snapshot) {
12 DCHECK(snapshot);
13 DCHECK_EQ(0u, snapshot->size());
14 snapshot->resize(1);
27 &(*snapshot)[0],
28 snapshot->size() * sizeof(HMODULE),
35 if (num_modules <= snapshot->size()) {
37 snapshot->erase(snapshot->begin() + num_modules, snapshot->end())
    [all...]
loaded_modules_snapshot_unittest.cc 18 std::vector<HMODULE> snapshot; local
20 ASSERT_TRUE(GetLoadedModulesSnapshot(&snapshot));
21 size_t original_snapshot_size = snapshot.size();
23 snapshot.clear();
33 ASSERT_TRUE(GetLoadedModulesSnapshot(&snapshot));
34 ASSERT_GT(snapshot.size(), original_snapshot_size);
35 ASSERT_NE(snapshot.end(),
36 std::find(snapshot.begin(), snapshot.end(), new_dll));
module_list_unittest.cc 17 std::vector<HMODULE> snapshot; local
18 ASSERT_TRUE(GetLoadedModulesSnapshot(&snapshot));
20 ModuleList::FromLoadedModuleSnapshot(snapshot));
25 snapshot.clear();
36 // Verify that there is an increase in the snapshot size.
37 ASSERT_TRUE(GetLoadedModulesSnapshot(&snapshot));
38 module_list = ModuleList::FromLoadedModuleSnapshot(snapshot);
49 // List the modules from the stale snapshot (including a dangling HMODULE to
51 module_list = ModuleList::FromLoadedModuleSnapshot(snapshot);
  /external/chromium_org/chrome/browser/resources/memory_internals/
snapshot_view.css 5 #snapshot-view .process-id {
10 #snapshot-view .process-info {
14 #snapshot-view dl {
19 #snapshot-view dl dd {
23 #snapshot-view .process-memory {
28 #snapshot-view .process-memory-private {
34 #snapshot-view .process-memory-v8 {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
heapProfiler.css 32 .heap-snapshot-sidebar-tree-item .icon {
36 .heap-snapshot-sidebar-tree-item.small .icon {
40 .heap-snapshot-view {
50 .heap-snapshot-view .pie-chart {
54 .heap-snapshot-view .data-grid {
58 .heap-snapshot-view .data-grid tr:empty {
63 .heap-snapshot-view .data-grid span.percent-column {
67 .heap-snapshot-view .console-formatted-object,
77 .heap-snapshot-view .console-formatted-string {
81 .heap-snapshot-view tr:not(.selected) .console-formatted-id
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gpu_state_tracer.cc 19 class Snapshot : public base::debug::ConvertableToTraceFormat {
21 static scoped_refptr<Snapshot> Create(const ContextState* state);
30 explicit Snapshot(const ContextState* state);
31 virtual ~Snapshot() {}
38 DISALLOW_COPY_AND_ASSIGN(Snapshot);
43 Snapshot::Snapshot(const ContextState* state) : state_(state) {}
45 scoped_refptr<Snapshot> Snapshot::Create(const ContextState* state) {
46 return scoped_refptr<Snapshot>(new Snapshot(state))
    [all...]
  /sdk/eclipse/
TYCHO_BUILD 6 The resulting artifacts will be in $OUT/host/maven/bundles-<version>-SNAPSHOT/products/
  /external/chromium_org/chrome/browser/ui/views/panels/
taskbar_window_thumbnailer_win.h 17 // thumbnail. If empty list is returned, the snapshot of current window
30 // Starts using the custom snapshot for live preview. The snapshot is only
35 // Stops providing the custom snapshot for live preview.
38 // Captures the snapshot now instead of when the system requests it.
41 // Invalidates the snapshot such that a fresh copy can be obtained next time
45 // Provide the snapshot to the new window. If the snapshot is captured for the
  /external/chromium_org/sync/sessions/
sync_session.cc 53 SyncSessionSnapshot snapshot(
67 return snapshot;
73 event.snapshot = TakeSnapshotWithSource(source);
75 DVLOG(1) << "Sending cycle end event with snapshot: "
76 << event.snapshot.ToString();
84 event.snapshot = TakeSnapshot();
86 DVLOG(1) << "Sending event with snapshot: " << event.snapshot.ToString();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayerPaintProfilerView.js 34 * @param {!WebInspector.PaintProfilerSnapshot=} snapshot
37 function onSnapshotDone(snapshot)
40 snapshot.commandLog(onCommandLogDone.bind(this, snapshot));
44 * @param {!WebInspector.PaintProfilerSnapshot=} snapshot
48 function onCommandLogDone(snapshot, log)
50 this._logTreeView.setCommandLog(snapshot.target(), log);
51 this._paintProfilerView.setSnapshotAndLog(snapshot || null, log || []);
  /external/chromium_org/ui/snapshot/test/
snapshot_desktop_win.cc 5 #include "ui/snapshot/test/snapshot_desktop.h"
7 #include "ui/snapshot/snapshot_win.h"
  /external/valgrind/main/gdbserver_tests/
mssnapshot.stdinB.gdb 16 # test non detailed and detailed snapshot
17 monitor snapshot
  /frameworks/base/libs/hwui/
Snapshot.h 66 * A snapshot holds information about the current state of the rendering
67 * surface. A snapshot is usually created whenever the user calls save()
68 * and discarded when the user calls restore(). Once a snapshot is created,
71 * Each snapshot has a link to a previous snapshot, indicating the previous
74 class Snapshot: public LightRefBase<Snapshot> {
77 Snapshot();
78 Snapshot(const sp<Snapshot>& s, int saveFlags)
    [all...]
Snapshot.cpp 19 #include "Snapshot.h"
30 Snapshot::Snapshot()
46 * Copies the specified snapshot/ The specified snapshot is stored as
47 * the previous snapshot.
49 Snapshot::Snapshot(const sp<Snapshot>& s, int saveFlags)
79 if (s->flags & Snapshot::kFlagFboTarget)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 51 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local
52 assertNotNull(snapshot);
53 assertEquals(2, snapshot.size());
60 Bundle snapshot = mPerfCollector.endSnapshot(); local
62 verifySnapshotBundle(snapshot);
111 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local
112 assertNotNull(snapshot);
113 assertEquals(2, snapshot.size());
348 * by staggering calls to snapshot and timing functions.
399 private void verifySnapshotBundle(Bundle snapshot) {
    [all...]
  /external/chromium-trace/trace-viewer/src/tcmalloc/
heap_test.js 14 var snapshot = new HeapSnapshot({}, 1, [
30 snapshot.preInitialize();
31 snapshot.initialize();
34 assertEquals(1, snapshot.ts);
37 assertEquals(10, snapshot.total_.currentAllocs);
38 assertEquals(10000, snapshot.total_.currentBytes);
43 var snapshot = new HeapSnapshot({}, 1, [
73 snapshot.preInitialize();
74 snapshot.initialize();
77 var heap = snapshot.heap_
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/linux/
snapshot_file_details.h 16 // Used to represent snapshot file request params.
29 // Local platform path of the snapshot file.
40 // SnapshotFileDetails tracks the current state of the snapshot file (e.g how
41 // many bytes written to the snapshot file, source file details, snapshot file
90 // Returns true if the snapshot file is created successfully (no more write
91 // operation is required to complete the snapshot file).
97 // Snapshot file request params.
100 // Metadata of the snapshot file (such as name, size, type, etc).
103 // Number of bytes written into the snapshot file
    [all...]
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
processes_and_threads.cc 17 HANDLE snapshot = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL); local
18 if (INVALID_HANDLE_VALUE == snapshot) {
27 BOOL result = ::Process32First(snapshot, &process_entry);
45 result = ::Process32Next(snapshot, &process_entry);
54 ::CloseHandle(snapshot);
61 HANDLE snapshot = ::CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, NULL); local
62 if (INVALID_HANDLE_VALUE == snapshot) {
71 BOOL result = ::Thread32First(snapshot, &thread_entry);
89 result = Thread32Next(snapshot, &thread_entry);
101 ::CloseHandle(snapshot);
    [all...]
  /external/chromium_org/ui/snapshot/
snapshot_aura_unittest.cc 5 #include "ui/snapshot/snapshot.h"
91 // Snapshot test tests real drawing and readback, so needs pixel output.
143 // Run internal snapshot callback to scale/rotate response image.
193 gfx::Image snapshot = GrabSnapshotForTestWindow(); local
195 snapshot.Size().ToString());
196 EXPECT_EQ(0u, GetFailedPixelsCount(snapshot));
204 gfx::Image snapshot = GrabSnapshotForTestWindow(); local
205 EXPECT_EQ(test_bounds.size().ToString(), snapshot.Size().ToString());
206 EXPECT_EQ(0u, GetFailedPixelsCount(snapshot));
216 gfx::Image snapshot = GrabSnapshotForTestWindow(); local
232 gfx::Image snapshot = GrabSnapshotForTestWindow(); local
249 gfx::Image snapshot = GrabSnapshotForTestWindow(); local
267 gfx::Image snapshot = GrabSnapshotForTestWindow(); local
287 gfx::Image snapshot = GrabSnapshotForTestWindow(); local
    [all...]
  /external/chromium_org/base/metrics/
histogram_delta_serialization_unittest.cc 37 scoped_ptr<HistogramSamples> snapshot(histogram->SnapshotSamples());
38 EXPECT_EQ(1, snapshot->GetCount(1));
39 EXPECT_EQ(1, snapshot->GetCount(10));
40 EXPECT_EQ(1, snapshot->GetCount(100));
41 EXPECT_EQ(1, snapshot->GetCount(1000));

Completed in 1912 milliseconds

1 2 3 4 5 6 7 8 91011>>