/bionic/libc/kernel/common/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/development/ndk/platforms/android-3/include/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
WebKitPluginAgentReply.defs | 33 skip; // CheckInApplication 38 skip; // CheckInPluginHost
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
stacktrace.h | 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
rc4.h | 18 void rc4_skip(const u8 *key, size_t keylen, size_t skip,
|
/external/dhcpcd/ |
dhcpcd-run-hooks | 21 for skip in ${skip_hooks}; do 23 */"${skip}") continue 2;; 24 */[0-9][0-9]"-${skip}") continue 2;; 25 */[0-9][0-9]"-${skip}.sh") continue 2;;
|
dhcpcd-run-hooks.in | 128 for skip in ${skip_hooks}; do 130 */"${skip}") continue 2;; 131 */[0-9][0-9]"-${skip}") continue 2;; 132 */[0-9][0-9]"-${skip}.sh") continue 2;;
|
/external/kernel-headers/original/linux/ |
stacktrace.h | 12 unsigned int skip); 16 # define save_stack_trace(trace, task, all, skip) do { } while (0)
|
/packages/apps/Email/src/org/apache/commons/io/input/ |
CountingInputStream.java | 97 * @param length the number of bytes to skip
100 * @see java.io.InputStream#skip(long)
102 public long skip(final long length) throws IOException {
method in class:CountingInputStream 103 final long skip = super.skip(length);
local 104 this.count += skip;
105 return skip;
|
ProxyInputStream.java | 79 * Invokes the delegate's <code>skip(long)</code> method.
80 * @param ln the number of bytes to skip
84 public long skip(long ln) throws IOException {
method in class:ProxyInputStream 85 return in.skip(ln);
|
ProxyReader.java | 79 * Invokes the delegate's <code>skip(long)</code> method.
80 * @param ln the number of bytes to skip
84 public long skip(long ln) throws IOException {
method in class:ProxyReader 85 return in.skip(ln);
|
/packages/apps/Email/src/org/apache/james/mime4j/util/ |
PartialInputStream.java | 31 inputStream.skip(offset);
55 public long skip(long n) throws IOException {
method in class:PartialInputStream 57 return super.skip(n); //To change body of overridden methods use File | Settings | File Templates.
|
/external/wpa_supplicant/ |
rc4.h | 18 void rc4_skip(const u8 *key, size_t keylen, size_t skip,
|
/libcore/luni/src/main/java/java/io/ |
ObjectInput.java | 107 * the number of bytes to skip. 113 public long skip(long toSkip) throws IOException; method in interface:ObjectInput
|
FilterInputStream.java | 96 * @see #skip(long) 183 * the number of bytes to skip. 191 public long skip(long count) throws IOException { method in class:FilterInputStream 192 return in.skip(count);
|
FilterReader.java | 92 * @see #skip(long) 163 * {@code read()} and {@code skip()} will occur from this new location. If 184 * default implementation is to skip characters in the filtered reader. 187 * the maximum number of characters to skip. 197 public long skip(long count) throws IOException { method in class:FilterReader 199 return in.skip(count);
|
/external/guava/src/com/google/common/io/ |
CountingInputStream.java | 64 @Override public long skip(long n) throws IOException { method in class:CountingInputStream 65 long result = in.skip(n);
|
MultiInputStream.java | 102 @Override public long skip(long n) throws IOException { method in class:MultiInputStream 106 long result = in.skip(n); 113 return 1 + in.skip(n - 1);
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
InflaterInputStreamTest.java | 187 assertEquals(4, in.skip(4)); 282 * @tests java.util.zip.InflaterInputStream#skip(long) 290 iis.skip(-3); 298 iis.skip(Integer.MIN_VALUE); 306 assertEquals("Incorrect Number Of Bytes Skipped.", 3, iis.skip(3)); 311 assertEquals("Incorrect Number Of Bytes Skipped.", 0, iis.skip(0)); 315 assertEquals("Incorrect Number Of Bytes Skipped.", 2, iis.skip(4)); 321 * @tests java.util.zip.InflaterInputStream#skip(long) 328 // testing for negative input to skip 334 long skip; local [all...] |
/external/webkit/WebCore/platform/graphics/chromium/ |
VDMXParser.cpp | 51 bool skip(size_t numBytes) function in class:Buffer 129 if (!buf.skip(4) || !buf.readU16(&numRatios)) 146 if (!buf.skip(1) 174 if (!buf.readU16(&numRecords) || !buf.skip(sizeof(uint16_t))) 196 if (!buf.skip(2 * sizeof(int16_t)))
|