Searched defs:UNKNOWN_LENGTH (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java41 public static final long UNKNOWN_LENGTH = -1; field in class:AssetFileDescriptor
53 * This must be 0 if length is UNKNOWN_LENGTH.
55 * {@link #UNKNOWN_LENGTH} if it extends to the end of the file.
67 * This must be 0 if length is UNKNOWN_LENGTH.
69 * {@link #UNKNOWN_LENGTH} if it extends to the end of the file.
80 "startOffset must be 0 when using UNKNOWN_LENGTH");
122 * {@link #UNKNOWN_LENGTH} if the asset extends to the end of the file.
123 * If the AssetFileDescriptor was constructed with {@link #UNKNOWN_LENGTH},
126 * returning that number if found or {@link #UNKNOWN_LENGTH} if it could
136 return len >= 0 ? len : UNKNOWN_LENGTH;
[all...]

Completed in 63 milliseconds