Searched refs:SetLength (Results 1 - 25 of 111) sorted by relevance

12345

/external/chromium_org/ppapi/api/
H A Dppb_var_array.idl76 PP_Bool SetLength([in] PP_Var array, [in] uint32_t length);
H A Dppb_file_io.idl215 * SetLength() sets the length of the file. If the file size is extended,
224 * completion of SetLength().
230 int32_t SetLength([in] PP_Resource file_io,
/external/chromium_org/ppapi/c/
H A Dppb_var_array.h86 PP_Bool (*SetLength)(struct PP_Var array, uint32_t length); member in struct:PPB_VarArray_1_0
H A Dppb_file_io.h226 * SetLength() sets the length of the file. If the file size is extended,
235 * completion of SetLength().
241 int32_t (*SetLength)(PP_Resource file_io, member in struct:PPB_FileIO_1_1
326 int32_t (*SetLength)(PP_Resource file_io, member in struct:PPB_FileIO_1_0
/external/chromium_org/ppapi/thunk/
H A Dppb_var_array_thunk.cc50 PP_Bool SetLength(PP_Var array, uint32_t length) { function in namespace:ppapi::thunk::__anon9690
56 return array_var->SetLength(length);
64 &SetLength
H A Dppb_file_io_thunk.cc100 int32_t SetLength(PP_Resource file_io, function in namespace:ppapi::thunk::__anon9633
103 VLOG(4) << "PPB_FileIO::SetLength()";
107 return enter.SetResult(enter.object()->SetLength(length, enter.callback()));
149 &SetLength,
162 &SetLength,
H A Dppb_file_io_api.h43 virtual int32_t SetLength(int64_t length,
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_var_array_interface.h21 virtual PP_Bool SetLength(PP_Var array, uint32_t length);
H A Dfake_var_array_interface.cc57 PP_Bool FakeVarArrayInterface::SetLength(PP_Var var, uint32_t length) { function in class:FakeVarArrayInterface
/external/chromium_org/ppapi/cpp/
H A Dvar_array.h85 bool SetLength(uint32_t length);
H A Dvar_array.cc89 bool VarArray::SetLength(uint32_t length) { function in class:pp::VarArray
93 return PP_ToBool(get_interface<PPB_VarArray_1_0>()->SetLength(var_, length));
H A Dfile_io.h197 /// SetLength() sets the length of the file. If the file size is extended,
203 /// completion of SetLength().
207 int32_t SetLength(int64_t length,
H A Dfile_io.cc147 int32_t FileIO::SetLength(int64_t length, function in class:pp::FileIO
150 return get_interface<PPB_FileIO_1_1>()->SetLength(
153 return get_interface<PPB_FileIO_1_0>()->SetLength(
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbuffer.h76 SetLength(length);
82 SetLength(length_ + length);
85 void SetLength(size_t length) { function in class:talk_base::Buffer
H A Dbuffer_unittest.cc106 buf.SetLength(sizeof(kTestData) / 2);
115 buf.SetLength(sizeof(kTestData) * 2);
142 buf.SetLength(sizeof(kTestData) * 2);
/external/chromium_org/third_party/webrtc/base/
H A Dbuffer.h59 SetLength(length);
65 SetLength(length_ + length);
68 void SetLength(size_t length) { function in class:rtc::Buffer
H A Dbuffer_unittest.cc89 buf.SetLength(sizeof(kTestData) / 2);
98 buf.SetLength(sizeof(kTestData) * 2);
125 buf.SetLength(sizeof(kTestData) * 2);
/external/chromium_org/ppapi/shared_impl/
H A Darray_var.h38 PP_Bool SetLength(uint32_t length);
H A Darray_var.cc70 PP_Bool ArrayVar::SetLength(uint32_t length) { function in class:ppapi::ArrayVar
/external/chromium_org/base/files/
H A Dfile_proxy.h123 // Proxies File::SetLength. The callback can be null.
125 bool SetLength(int64 length, const StatusCallback& callback);
H A Dfile_proxy.cc69 void SetLength(int64 length) { function in class:base::__anon2239::GenericFileHelper
70 if (file_.SetLength(length))
341 bool FileProxy::SetLength(int64 length, const StatusCallback& callback) { function in class:base::FileProxy
346 Bind(&GenericFileHelper::SetLength, Unretained(helper), length),
/external/chromium_org/net/disk_cache/blockfile/
H A Dfile.h64 bool SetLength(size_t length);
H A Dfile_posix.cc126 bool File::SetLength(size_t length) { function in class:disk_cache::File
131 return base_file_.SetLength(length);
/external/chromium_org/courgette/
H A Dmemory_allocator.cc98 if (!file_.SetLength(size) ||
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_file_io_impl.h110 void SetLength(uint32_t length);

Completed in 1155 milliseconds

12345