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

1 2

  /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
  /bionic/libc/arch-sh/syscalls/
truncate.S 5 .type truncate, @function
6 .globl truncate
9 truncate: label
  /external/icu4c/common/
charstr.cpp 30 CharString &CharString::truncate(int32_t newLength) { function in class:CharString
  /external/llvm/lib/MC/
MCAtom.cpp 76 void MCAtom::truncate(uint64_t TruncPt) { function in class:MCAtom
  /external/webkit/Source/WebKit/chromium/src/
WorkerAsyncFileWriterChromium.cpp 77 void WorkerAsyncFileWriterChromium::truncate(long long length) function in class:WebCore::WorkerAsyncFileWriterChromium
AsyncFileWriterChromium.cpp 63 void AsyncFileWriterChromium::truncate(long long length) function in class:WebCore::AsyncFileWriterChromium
66 m_writer->truncate(length);
  /external/webkit/Source/WebCore/fileapi/
FileWriterSync.cpp 73 void FileWriterSync::truncate(long long offset, ExceptionCode& ec) function in class:WebCore::FileWriterSync
83 writer()->truncate(offset);
FileWriter.cpp 114 void FileWriter::truncate(long long position, ExceptionCode& ec) function in class:WebCore::FileWriter
125 writer()->truncate(position);
FileStreamProxy.cpp 208 void FileStreamProxy::truncate(long long position) function in class:WebCore::FileStreamProxy
215 bool success = m_stream->truncate(position);
  /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
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
RootInputStream.java 66 public void truncate() { method in class:RootInputStream
  /external/webkit/Source/WebCore/platform/
FileStream.cpp 142 bool FileStream::truncate(long long) function in class:WebCore::FileStream
  /frameworks/compile/libbcc/lib/ExecutionEngine/
FileHandle.cpp 172 void FileHandle::truncate() { function in class:bcc::FileHandle
175 LOGE("Unable to truncate the file.\n");
  /libcore/luni/src/main/java/java/nio/channels/
FileChannel.java 563 public abstract FileChannel truncate(long size) throws IOException; method in class:FileChannel
    [all...]
  /external/chromium/net/disk_cache/
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);
  /frameworks/base/core/java/com/android/internal/os/
AtomicFile.java 111 public void truncate() throws IOException { method in class:AtomicFile
  /dalvik/dx/src/junit/runner/
BaseTestRunner.java 177 public static String truncate(String s) { method in class:BaseTestRunner
  /external/junit/src/junit/runner/
BaseTestRunner.java 192 public static String truncate(String s) { method in class:BaseTestRunner
  /frameworks/base/test-runner/src/junit/runner/
BaseTestRunner.java 177 public static String truncate(String s) { method in class:BaseTestRunner
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
unistd.h 956 # define truncate macro
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/file/
SDL_rwops.c 55 DWORD must_exist, truncate; local
67 /* "w" = writing, truncate existing, file may not exist */
71 /* "w+" = read, write, truncate. file may not exist */
74 truncate = ( SDL_strchr(mode,'w') != NULL ) ? CREATE_ALWAYS : 0;
77 w_right = ( a_mode || SDL_strchr(mode,'+') || truncate ) ? GENERIC_WRITE : 0;
101 NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
109 NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 224 void String::truncate(unsigned position) function in class:WTF::String
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 234 // We can't defer to FileChannel.truncate because that will only make a file shorter,
442 public FileChannel truncate(long size) throws IOException { method in class:FileChannelImpl

Completed in 2356 milliseconds

1 2