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

1 2 3 4 5

  /art/runtime/base/unix_file/
string_file_test.cc 34 TEST_F(StringFileTest, SetLength) {
null_file.h 40 virtual int SetLength(int64_t new_length);
null_file_test.cc 37 TEST_F(NullFileTest, SetLength) {
40 ASSERT_EQ(-EINVAL, f.SetLength(-1));
42 ASSERT_EQ(0, f.SetLength(0));
43 ASSERT_EQ(0, f.SetLength(128));
random_access_file.h 51 virtual int SetLength(int64_t new_length) = 0;
null_file.cc 43 int NullFile::SetLength(int64_t new_length) {
string_file.h 43 virtual int SetLength(int64_t new_length);
fd_file.h 52 virtual int SetLength(int64_t new_length);
fd_file_test.cc 34 TEST_F(FdFileTest, SetLength) {
mapped_file.h 56 // Unmaps a mapped file so that, e.g., SetLength() may be invoked.
64 // SetLength() requires that the file is not mmapped.
65 virtual int SetLength(int64_t new_length);
string_file.cc 54 int StringFile::SetLength(int64_t new_length) {
  /external/chromium_org/ppapi/api/
ppb_var_array.idl 76 PP_Bool SetLength([in] PP_Var array, [in] uint32_t 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.h 85 bool SetLength(uint32_t length);
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.h 193 /// SetLength() sets the length of the file. If the file size is extended,
199 /// completion of SetLength().
203 int32_t SetLength(int64_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_org/ppapi/shared_impl/
array_var.h 38 PP_Bool SetLength(uint32_t length);
array_var.cc 76 PP_Bool ArrayVar::SetLength(uint32_t length) {
  /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) {
  /external/chromium_org/content/renderer/pepper/
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/net/disk_cache/
file.h 64 bool SetLength(size_t length);
  /external/chromium_org/net/disk_cache/
file.h 67 bool SetLength(size_t length);

Completed in 302 milliseconds

1 2 3 4 5