HomeSort by relevance Sort by last modified time
    Searched defs:SetLength (Results 1 - 25 of 31) sorted by null

1 2

  /art/runtime/base/unix_file/
null_file.cc 43 int NullFile::SetLength(int64_t new_length) {
string_file.cc 54 int StringFile::SetLength(int64_t new_length) {
mapped_file.cc 114 int MappedFile::SetLength(int64_t new_length) {
116 return FdFile::SetLength(new_length);
fd_file.cc 81 int FdFile::SetLength(int64_t new_length) {
  /external/chromium_org/ppapi/c/
ppb_var_array.h 86 PP_Bool (*SetLength)(struct PP_Var array, uint32_t length);
ppb_file_io.h 221 * SetLength() sets the length of the file. If the file size is extended,
230 * completion of SetLength().
236 int32_t (*SetLength)(PP_Resource file_io,
320 int32_t (*SetLength)(PP_Resource file_io,
  /external/chromium_org/ppapi/cpp/
var_array.cc 89 bool VarArray::SetLength(uint32_t length) {
93 return PP_ToBool(get_interface<PPB_VarArray_1_0>()->SetLength(var_, length));
file_io.cc 148 int32_t FileIO::SetLength(int64_t length,
151 return get_interface<PPB_FileIO_1_1>()->SetLength(
154 return get_interface<PPB_FileIO_1_0>()->SetLength(
  /external/chromium_org/ppapi/shared_impl/
array_var.cc 76 PP_Bool ArrayVar::SetLength(uint32_t length) {
  /external/chromium_org/ppapi/thunk/
ppb_var_array_thunk.cc 50 PP_Bool SetLength(PP_Var array, uint32_t length) {
56 return array_var->SetLength(length);
64 &SetLength
ppb_file_io_thunk.cc 102 int32_t SetLength(PP_Resource file_io,
105 VLOG(4) << "PPB_FileIO::SetLength()";
109 return enter.SetResult(enter.object()->SetLength(length, enter.callback()));
151 &SetLength,
164 &SetLength,
  /external/chromium/third_party/libjingle/source/talk/base/
buffer.h 76 SetLength(length);
82 SetLength(length_ + length);
85 void SetLength(size_t length) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
buffer.h 76 SetLength(length);
82 SetLength(length_ + length);
85 void SetLength(size_t length) {
  /art/runtime/mirror/
array.h 45 void SetLength(int32_t length) {
  /external/chromium/net/disk_cache/
file_win.cc 232 bool File::SetLength(size_t length) {
file_posix.cc 254 bool File::SetLength(size_t length) {
  /external/chromium_org/net/disk_cache/
file_posix.cc 261 bool File::SetLength(size_t length) {
file_win.cc 235 bool File::SetLength(size_t length) {
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 54 public override void SetLength(long value)
56 throw (new Exception("can't SetLength"));
LzmaBench.cs 133 public override void SetLength(long value) { }
  /external/chromium_org/content/renderer/pepper/
quota_file_io.cc 254 bool QuotaFileIO::SetLength(int64_t length, const StatusCallback& callback) {
quota_file_io_unittest.cc 269 SetLength(0, will_operation);
277 SetLength(8, will_operation);
291 SetLength(16, will_operation);
305 SetLength(4, will_operation);
319 SetLength(0, will_operation);
336 SetLength(7, will_operation);
360 void SetLength(int64_t length, bool will_operation) {
367 ASSERT_TRUE(quota_file_io_->SetLength(
439 TEST_F(QuotaFileIOTest, SetLength) {
  /external/chromium_org/ppapi/proxy/
file_io_resource.cc 229 int32_t FileIOResource::SetLength(int64_t length,
  /external/lzma/CPP/Windows/
FileIO.cpp 424 bool COutFile::SetLength(UInt64 length)
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.h 188 void SetLength(uint16 length) { length_ = length; }

Completed in 979 milliseconds

1 2