OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:snapshot_file
(Results
1 - 11
of
11
) sorted by null
/external/v8/src/
snapshot-common.cc
47
bool Snapshot::Initialize(const char*
snapshot_file
) {
48
if (
snapshot_file
) {
50
byte* str = ReadBytes(
snapshot_file
, &len);
snapshot.h
38
// Initialize the VM from the given snapshot file. If
snapshot_file
is
41
static bool Initialize(const char*
snapshot_file
= NULL);
51
static bool WriteToFile(const char*
snapshot_file
);
mksnapshot.cc
134
explicit CppByteSink(const char*
snapshot_file
) {
135
fp_ = i::OS::FOpen(
snapshot_file
, "wb");
137
i::PrintF("Unable to write to snapshot file \"%s\"\n",
snapshot_file
);
/external/chromium_org/v8/src/
snapshot.h
38
// Initialize the VM from the given snapshot file. If
snapshot_file
is
41
static bool Initialize(const char*
snapshot_file
= NULL);
53
static bool WriteToFile(const char*
snapshot_file
);
snapshot-common.cc
90
bool Snapshot::Initialize(const char*
snapshot_file
) {
91
if (
snapshot_file
) {
93
byte* str = ReadBytes(
snapshot_file
, &len);
99
ReserveSpaceForSnapshot(&deserializer,
snapshot_file
);
mksnapshot.cc
94
explicit CppByteSink(const char*
snapshot_file
) {
95
fp_ = i::OS::FOpen(
snapshot_file
, "wb");
97
i::PrintF("Unable to write to snapshot file \"%s\"\n",
snapshot_file
);
/external/chromium_org/chrome/test/base/
ui_test_utils.cc
113
base::FilePath
snapshot_file
= snapshot_directory.AppendASCII(filename);
local
114
if (base::PathExists(
snapshot_file
)) {
120
trial_file =
snapshot_file
.InsertBeforeExtensionASCII(suffix);
122
snapshot_file
= trial_file;
124
return
snapshot_file
;
/external/chromium_org/v8/test/cctest/
test-serialize.cc
171
explicit FileByteSink(const char*
snapshot_file
) {
172
fp_ = OS::FOpen(
snapshot_file
, "wb");
173
file_name_ =
snapshot_file
;
175
PrintF("Unable to write to snapshot file \"%s\"\n",
snapshot_file
);
231
static bool WriteToFile(Isolate* isolate, const char*
snapshot_file
) {
232
FileByteSink file(
snapshot_file
);
/external/v8/test/cctest/
test-serialize.cc
172
explicit FileByteSink(const char*
snapshot_file
) {
173
fp_ = OS::FOpen(
snapshot_file
, "wb");
174
file_name_ =
snapshot_file
;
176
PrintF("Unable to write to snapshot file \"%s\"\n",
snapshot_file
);
232
static bool WriteToFile(const char*
snapshot_file
) {
233
FileByteSink file(
snapshot_file
);
/external/chromium_org/chrome/browser/media_galleries/mac/
mtp_device_delegate_impl_mac.h
126
base::FilePath
snapshot_file
;
member in struct:MTPDeviceDelegateImplMac::ReadFileRequest
mtp_device_delegate_impl_mac.mm
438
base::Bind(iter->success_callback, info, iter->
snapshot_file
));
448
snapshot_file
(snapshot_filename),
Completed in 1253 milliseconds