OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:file_growths
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ppapi/shared_impl/
file_growth.cc
23
FileGrowthMap
file_growths
;
local
27
file_growths
[it->first] = FileGrowth(it->second, 0);
28
return
file_growths
;
32
const FileGrowthMap&
file_growths
) {
34
for (FileGrowthMap::const_iterator it =
file_growths
.begin();
35
it !=
file_growths
.end();
/external/chromium_org/ppapi/proxy/
file_system_resource.cc
178
FileGrowthMap
file_growths
;
local
187
file_growths
[*it] = FileGrowth(
192
PpapiHostMsg_FileSystem_ReserveQuota(amount,
file_growths
),
file_system_resource_unittest.cc
247
FileGrowthMap
file_growths
;
local
249
msg, &amount, &
file_growths
));
251
ASSERT_EQ(2U,
file_growths
.size());
252
ASSERT_EQ(0,
file_growths
[file_io1.get()].max_written_offset);
253
ASSERT_EQ(0,
file_growths
[file_io2.get()].max_written_offset);
272
FileGrowthMapToFileSizeMapForTesting(
file_growths
)));
303
FileGrowthMapToFileSizeMapForTesting(
file_growths
)));
334
FileGrowthMapToFileSizeMapForTesting(
file_growths
)));
352
FileGrowthMapToFileSizeMapForTesting(
file_growths
)));
nacl_message_scanner.cc
415
FileGrowthMap
file_growths
;
local
417
nested_msg, &amount, &
file_growths
))
421
for (FileGrowthMap::iterator it =
file_growths
.begin();
422
it !=
file_growths
.end(); ++it) {
442
amount,
file_growths
)));
/external/chromium_org/content/browser/renderer_host/pepper/
quota_reservation_unittest.cc
138
ppapi::FileGrowthMap*
file_growths
) {
141
*
file_growths
,
142
base::Bind(&GotReservedQuota, reserved_quota,
file_growths
));
161
ppapi::FileGrowthMap
file_growths
;
local
162
ReserveQuota(test, amount, &reserved_quota, &
file_growths
);
164
EXPECT_EQ(0U,
file_growths
.size());
173
file_growths
[kFile1ID] = ppapi::FileGrowth(file_size, 0); // 1 file open.
174
ReserveQuota(test, amount, &reserved_quota, &
file_growths
);
176
EXPECT_EQ(1U,
file_growths
.size());
177
EXPECT_EQ(file_size,
file_growths
[kFile1ID].max_written_offset)
219
ppapi::FileGrowthMap
file_growths
;
local
[
all
...]
Completed in 123 milliseconds