/bionic/libc/arch-mips/syscalls/ |
truncate.S | 4 .globl truncate 6 .ent truncate 8 truncate: label 22 .end truncate
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
truncate.c | 12 int truncate(const char* pathname, off_t length) { function
|
/bionic/libc/arch-arm/syscalls/ |
truncate.S | 6 ENTRY(truncate) function 15 END(truncate)
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebFileWriter.h | 46 // Only one write or one truncate operation can be in progress at a time. 50 virtual void truncate(long long length) = 0; 52 // 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. 53 // Do not call cancel when there is no write or truncate in progress.
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
FileWriterSync.idl | 37 [RaisesException] void truncate(long long size);
|
FileWriterSync.h | 56 void truncate(long long length, ExceptionState&);
|
FileWriter.idl | 45 [RaisesException] void truncate(long long size);
|
/bionic/libc/arch-x86/syscalls/ |
truncate.S | 6 ENTRY(truncate) function 24 END(truncate)
|
/external/chromium_org/third_party/WebKit/Source/platform/clipboard/ |
ClipboardUtilitiesPosix.cpp | 56 // Truncate an overly-long filename, reserving one character for a dot. 57 name.truncate(maxFilenameLength - extension.length() - 1);
|
ClipboardUtilitiesWin.cpp | 69 // Truncate overly-long filenames, reserving one character for a dot. 70 name.truncate(maxFilenameLength - extension.length() - 1);
|
/frameworks/compile/libbcc/include/bcc/Support/ |
OutputFile.h | 36 void truncate();
|
/external/chromium_org/net/disk_cache/ |
net_log_parameters.cc | 30 bool truncate, 36 if (truncate) 37 dict->SetBoolean("truncate", truncate); 105 bool truncate) { 107 index, offset, buf_len, truncate);
|
net_log_parameters.h | 27 // read or write of an Entry. For reads, |truncate| must be false. 32 bool truncate); 35 // read or write completes. For reads, |truncate| must be false.
|
/external/chromium_org/content/test/data/fileapi/ |
quota_test.js | 19 fileWriter.truncate(2500 * 1024); 21 }, function(e) { fail('Open for 2nd truncate:' + fileErrorToString(e)); } ); 36 fail('Unexpectedly succeeded to truncate. It should fail by quota.'); 39 fileWriter.truncate(10000 * 1024); 41 }, function(e) { fail('Open for 1st truncate:' + fileErrorToString(e)); } );
|
/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_org/net/disk_cache/simple/ |
simple_entry_operation.cc | 149 bool truncate, 163 truncate, 249 const bool truncate = false; local 263 truncate, 298 int other_op_end = (other_op.type() == TYPE_WRITE && other_op.truncate()) 321 bool truncate, 335 truncate_(truncate),
|
simple_entry_operation.h | 66 bool truncate, 108 bool truncate() const { return truncate_; } function in class:disk_cache::SimpleEntryOperation 124 bool truncate,
|
/external/llvm/include/llvm/MC/ |
MCAtom.h | 57 virtual void truncate(uint64_t TruncPt) = 0; 144 /// \name Atom type specific split/truncate logic. 147 void truncate(uint64_t TruncPt) LLVM_OVERRIDE; 175 /// \name Atom type specific split/truncate logic. 178 void truncate(uint64_t TruncPt) LLVM_OVERRIDE;
|
/external/chromium_org/content/child/fileapi/ |
webfilewriter_base.h | 27 virtual void truncate(long long length);
|
/external/chromium_org/net/disk_cache/v3/ |
entry_impl_v3.h | 45 const CompletionCallback& callback, bool truncate); 104 bool truncate) OVERRIDE; 128 const CompletionCallback& callback, bool truncate); 151 bool PrepareTarget(int index, int offset, int buf_len, bool truncate);
|
/external/libvpx/libvpx/tools/ |
wrap-commit-msg.py | 63 fileobj.truncate(0)
|
/external/openssh/openbsd-compat/ |
bsd-misc.h | 67 int truncate (const char *, off_t);
|
/packages/apps/UnifiedEmail/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_);
|