OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FileGrowth
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/ppapi/shared_impl/
file_growth.h
15
struct PPAPI_SHARED_EXPORT
FileGrowth
{
16
FileGrowth
();
17
FileGrowth
(int64_t max_written_offset, int64_t append_mode_write_amount);
23
typedef std::map<int32_t,
FileGrowth
> FileGrowthMap;
file_growth.cc
11
FileGrowth
::
FileGrowth
() : max_written_offset(0), append_mode_write_amount(0) {}
13
FileGrowth
::
FileGrowth
(int64_t max_written_offset,
27
file_growths[it->first] =
FileGrowth
(it->second, 0);
/external/chromium_org/content/browser/renderer_host/pepper/
quota_reservation_unittest.cc
132
(*file_growths_ptr)[it->first] = ppapi::
FileGrowth
(it->second, 0);
173
file_growths[kFile1ID] = ppapi::
FileGrowth
(file_size, 0); // 1 file open.
183
test->CloseFile(kFile1ID, ppapi::
FileGrowth
(new_file_size, 0));
220
file_growths[kFile1ID] = ppapi::
FileGrowth
(file1_size, 0); // 3 files open.
221
file_growths[kFile2ID] = ppapi::
FileGrowth
(file2_size, 0);
222
file_growths[kFile3ID] = ppapi::
FileGrowth
(file3_size, 0);
231
test->CloseFile(kFile2ID, ppapi::
FileGrowth
(file2_size, 0));
240
test->CloseFile(kFile1ID, ppapi::
FileGrowth
(file1_size, 0));
241
test->CloseFile(kFile3ID, ppapi::
FileGrowth
(file3_size, 0));
pepper_file_io_host.h
27
struct
FileGrowth
;
65
const ppapi::
FileGrowth
& file_growth);
quota_reservation.h
46
void CloseFile(int32_t id, const ppapi::
FileGrowth
& file_growth);
pepper_file_system_browser_host.h
77
const ppapi::
FileGrowth
& file_growth);
quota_reservation.cc
81
const ppapi::
FileGrowth
& file_growth) {
pepper_file_io_host.cc
373
const ppapi::
FileGrowth
& file_growth) {
pepper_file_system_browser_host.cc
139
const ppapi::
FileGrowth
& file_growth) {
/external/chromium_org/ppapi/proxy/
nacl_message_scanner_unittest.cc
100
PpapiHostMsg_FileIO_Close(
FileGrowth
(0, 0))),
105
FileGrowth
file_growth;
123
PpapiHostMsg_FileIO_Close(
FileGrowth
(kNewFileSize, 0))),
nacl_message_scanner.cc
365
FileGrowth
file_growth;
380
FileGrowth
(trusted_max_written_offset, 0))));
file_system_resource.cc
187
file_growths[*it] =
FileGrowth
(
file_io_resource.cc
404
FileGrowth
(max_written_offset_, append_mode_write_amount_)));
ppapi_messages.h
233
IPC_STRUCT_TRAITS_BEGIN(ppapi::
FileGrowth
)
[
all
...]
Completed in 1466 milliseconds