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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-mips/syscalls/
truncate.S 4 .globl truncate
6 .ent truncate
8 truncate: label
22 .end truncate
  /external/webkit/Source/WebKit/chromium/public/
WebFileWriter.h 45 // Only one write or one truncate operation can be in progress at a time.
48 virtual void truncate(long long length) = 0;
50 // Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible.
51 // Do not call cancel when there is no write or truncate in progress.
  /bionic/libc/arch-arm/syscalls/
truncate.S 5 ENTRY(truncate) function
14 END(truncate)
  /bionic/libc/arch-x86/syscalls/
truncate.S 5 .type truncate, @function
6 .globl truncate
9 truncate: label
  /external/webkit/Source/WebCore/fileapi/
AsyncFileWriter.h 48 virtual void truncate(long long length) = 0;
FileWriterSync.idl 38 void truncate(in long long size) raises (FileException);
FileWriterSync.h 58 void truncate(long long length, ExceptionCode&);
FileWriter.idl 47 void truncate(in long long size) raises (FileException);
FileWriterSync.cpp 73 void FileWriterSync::truncate(long long offset, ExceptionCode& ec) function in class:WebCore::FileWriterSync
83 writer()->truncate(offset);
  /external/webkit/Source/WebKit/chromium/src/
AsyncFileWriterChromium.cpp 63 void AsyncFileWriterChromium::truncate(long long length) function in class:WebCore::AsyncFileWriterChromium
66 m_writer->truncate(length);
AsyncFileWriterChromium.h 59 virtual void truncate(long long length);
WorkerAsyncFileWriterChromium.cpp 77 void WorkerAsyncFileWriterChromium::truncate(long long length) function in class:WebCore::WorkerAsyncFileWriterChromium
WorkerAsyncFileWriterChromium.h 74 virtual void truncate(long long length);
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 42 void truncate();
  /external/webkit/Source/WebCore/css/
FontFamilyValue.cpp 58 m_familyName.truncate(length);
  /external/webkit/Source/WebCore/platform/
FileStream.h 86 bool truncate(long long position);
AsyncFileStream.h 54 virtual void truncate(long long position) = 0;
  /libcore/luni/src/main/java/java/sql/
Blob.java 172 * Truncate the value of this {@code Blob} object to a specified length in
181 public void truncate(long len) throws SQLException; method in interface:Blob
Clob.java 174 * truncate this {@code Clob}.
178 public void truncate(long len) throws SQLException; method in interface:Clob
  /external/llvm/include/llvm/MC/
MCAtom.h 60 /// truncate - Truncates an atom so that TruncPt is the last byte address
62 void truncate(uint64_t TruncPt);
  /external/openssh/openbsd-compat/
bsd-misc.h 67 int truncate (const char *, off_t);
  /external/webkit/Source/WebCore/loader/
FTPDirectoryParser.h 134 fileSize.truncate(0);
  /external/webkit/Source/WebCore/platform/win/
LanguageWin.cpp 47 localeName.truncate(localeName.length() - 1);
  /packages/apps/Email/src/org/apache/james/mime4j/
RootInputStream.java 66 public void truncate() { method in class:RootInputStream
  /external/chromium/net/disk_cache/
net_log_parameters.cc 27 int index, int offset, int buf_len, bool truncate)
28 : index_(index), offset_(offset), buf_len_(buf_len), truncate_(truncate) {
37 dict->SetBoolean("truncate", truncate_);

Completed in 447 milliseconds

1 2 3 4 5 6 7 8 91011>>