Searched defs:SetLength (Results 1 - 25 of 28) sorted by relevance

12

/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/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_var_array_interface.cc57 PP_Bool FakeVarArrayInterface::SetLength(PP_Var var, uint32_t length) { function in class:FakeVarArrayInterface
H A Dfake_pepper_interface_html5_fs.cc117 int32_t FakeHtml5FsNode::SetLength(int64_t length) { function in class:FakeHtml5FsNode
340 return RunCompletionCallback(&callback, node->SetLength(0));
414 int32_t FakeFileIoInterface::SetLength(PP_Resource file_io, function in class:FakeFileIoInterface
430 int32_t result = file_io_resource->node->SetLength(length);
/external/chromium_org/ppapi/cpp/
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.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/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,
/external/chromium_org/ppapi/shared_impl/
H A Darray_var.cc70 PP_Bool ArrayVar::SetLength(uint32_t length) { function in class:ppapi::ArrayVar
/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
/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
/external/chromium_org/net/disk_cache/blockfile/
H A Dfile_posix.cc126 bool File::SetLength(size_t length) { function in class:disk_cache::File
131 return base_file_.SetLength(length);
H A Dfile_ios.cc245 bool File::SetLength(size_t length) { function in class:disk_cache::File
250 return base_file_.SetLength(length);
H A Dfile_win.cc218 bool File::SetLength(size_t length) { function in class:disk_cache::File
/external/chromium_org/base/files/
H A Dfile_posix.cc408 bool File::SetLength(int64 length) { function in class:base::File
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),
H A Dfile_win.cc227 bool File::SetLength(int64 length) { function in class:base::File
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_file_io_impl.cc168 // Always SetLength() in case |data_size| is less than the file size.
169 SetLength(data_size);
343 void CdmFileIOImpl::SetLength(uint32_t length) { function in class:media::CdmFileIOImpl
348 CHECK_PP_OK_COMPLETIONPENDING(file_io_.SetLength(length, cb), WRITE_ERROR);
357 CDM_DLOG() << "File SetLength failed.";
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs54 public override void SetLength(long value) method in class:SevenZip.CDoubleStream
56 throw (new Exception("can't SetLength"));
H A DLzmaBench.cs133 public override void SetLength(long value) { } method in class:SevenZip.LzmaBench.CrcOutStream
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs243 public override void SetLength(long value) method in class:DotZLib.GZipStream
/external/lzma/CPP/Windows/
H A DFileIO.cpp424 bool COutFile::SetLength(UInt64 length) function in class:NWindows::NFile::NIO::COutFile
/external/chromium_org/ppapi/proxy/
H A Dfile_io_resource.cc324 int32_t FileIOResource::SetLength(int64_t length, function in class:ppapi::proxy::FileIOResource
537 // unpredictable ordering of plugin side Write and SetLength calls. Match that
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstun.h260 void SetLength(uint16 length) { length_ = length; } function in class:cricket::StunAttribute
313 SetLength(SIZE_IP4);
317 SetLength(SIZE_IP6);
321 SetLength(SIZE_UNDEF);
/external/chromium_org/third_party/webrtc/modules/interface/
H A Dmodule_common_types.h431 int32_t SetLength(const uint32_t newLength);
556 inline int32_t VideoFrame::SetLength(const uint32_t newLength) { function in class:webrtc::VideoFrame

Completed in 569 milliseconds

12