OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startup_data
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
startup-data-util.cc
44
void Load(const char* blob_file, v8::StartupData*
startup_data
,
46
ClearStartupData(
startup_data
);
57
startup_data
->raw_size = static_cast<int>(ftell(file));
60
startup_data
->data = new char[
startup_data
->raw_size];
61
int read_size = static_cast<int>(fread(const_cast<char*>(
startup_data
->data),
62
1,
startup_data
->raw_size, file));
65
if (
startup_data
->raw_size == read_size) {
66
(*setter_fn)(
startup_data
);
/external/v8/src/snapshot/
snapshot-common.cc
55
Vector<const byte>
startup_data
= ExtractStartupData(blob);
local
56
SnapshotData snapshot_data(
startup_data
);
61
int bytes =
startup_data
.length();
168
Vector<const byte>
startup_data
= startup_snapshot.RawData();
local
176
int startup_length =
startup_data
.length();
187
memcpy(data + kStartupDataOffset,
startup_data
.begin(), startup_length);
214
const byte*
startup_data
=
local
216
return Vector<const byte>(
startup_data
, startup_length);
Completed in 1772 milliseconds