/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();
|
file_growth.h | 29 FileGrowthMapToFileSizeMapForTesting(const FileGrowthMap& 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...] |
quota_reservation.cc | 93 const ppapi::FileGrowthMap& file_growths, 97 file_growths.find(it->first); 98 if (growth_it != file_growths.end()) {
|
pepper_file_system_browser_host.h | 115 const ppapi::FileGrowthMap& file_growths);
|
pepper_file_system_browser_host.cc | 368 const ppapi::FileGrowthMap& file_growths) { 383 file_growths,
|
/external/chromium_org/ppapi/proxy/ |
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)));
|
file_system_resource.cc | 178 FileGrowthMap file_growths; local 187 file_growths[*it] = FileGrowth( 192 PpapiHostMsg_FileSystem_ReserveQuota(amount, file_growths),
|
nacl_message_scanner.cc | 428 FileGrowthMap file_growths; local 430 nested_msg, &amount, &file_growths)) 434 for (FileGrowthMap::iterator it = file_growths.begin(); 435 it != file_growths.end(); ++it) { 455 amount, file_growths)));
|