/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-sh/syscalls/ |
truncate.S | 5 .type truncate, @function 6 .globl truncate 9 truncate: label
|
/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);
|
/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;
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
FileHandle.h | 65 void truncate();
|
/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/chromium/net/disk_cache/ |
entry_impl.h | 41 CompletionCallback* callback, bool truncate); 138 bool truncate); 162 CompletionCallback* callback, bool truncate); 187 bool PrepareTarget(int index, int offset, int buf_len, bool truncate);
|
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_);
|
stress_cache.cc | 139 bool truncate = rand() % 2 ? false : true; local 152 "i: %d iter: %d, size: %d, truncate: %d", i, iteration, size, 153 truncate ? 1 : 0); 154 rv = entries[slot]->WriteData(0, 0, buffer, size, &cb, truncate);
|
/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/emailcommon/src/org/apache/james/mime4j/ |
RootInputStream.java | 66 public void truncate() {
method in class:RootInputStream
|