HomeSort by relevance Sort by last modified time
    Searched defs:SetLength (Results 1 - 25 of 30) 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 129 int MappedFile::SetLength(int64_t new_length) {
131 return FdFile::SetLength(new_length);
fd_file.cc 147 int FdFile::SetLength(int64_t new_length) {
211 TEMP_FAILURE_RETRY(SetLength(0));
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_array_interface.cc 57 PP_Bool FakeVarArrayInterface::SetLength(PP_Var var, uint32_t length) {
fake_pepper_interface_html5_fs.cc 117 int32_t FakeHtml5FsNode::SetLength(int64_t length) {
340 return RunCompletionCallback(&callback, node->SetLength(0));
414 int32_t FakeFileIoInterface::SetLength(PP_Resource file_io,
430 int32_t result = file_io_resource->node->SetLength(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 226 * 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,
326 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 147 int32_t FileIO::SetLength(int64_t length,
150 return get_interface<PPB_FileIO_1_1>()->SetLength(
153 return get_interface<PPB_FileIO_1_0>()->SetLength(
  /external/chromium_org/ppapi/shared_impl/
array_var.cc 70 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 100 int32_t SetLength(PP_Resource file_io,
103 VLOG(4) << "PPB_FileIO::SetLength()";
107 return enter.SetResult(enter.object()->SetLength(length, enter.callback()));
149 &SetLength,
162 &SetLength,
  /external/chromium_org/third_party/webrtc/base/
buffer.h 59 SetLength(length);
65 SetLength(length_ + length);
68 void SetLength(size_t length) {
  /external/chromium_org/net/disk_cache/blockfile/
file_posix.cc 126 bool File::SetLength(size_t length) {
131 return base_file_.SetLength(length);
file_ios.cc 245 bool File::SetLength(size_t length) {
250 return base_file_.SetLength(length);
file_win.cc 218 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/base/files/
file_posix.cc 411 bool File::SetLength(int64 length) {
file_proxy.cc 69 void SetLength(int64 length) {
70 if (file_.SetLength(length))
341 bool FileProxy::SetLength(int64 length, const StatusCallback& callback) {
346 Bind(&GenericFileHelper::SetLength, Unretained(helper), length),
file_win.cc 230 bool File::SetLength(int64 length) {
  /external/chromium_org/ppapi/proxy/
file_io_resource.cc 324 int32_t FileIOResource::SetLength(int64_t length,
537 // unpredictable ordering of plugin side Write and SetLength calls. Match that
  /external/lzma/CPP/Windows/
FileIO.cpp 424 bool COutFile::SetLength(UInt64 length)
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.h 261 void SetLength(uint16 length) { length_ = length; }
314 SetLength(SIZE_IP4);
318 SetLength(SIZE_IP6);
322 SetLength(SIZE_UNDEF);

Completed in 501 milliseconds

1 2