/system/extras/f2fs_utils/ |
f2fs_sparseblock.c | 143 SLOGD("entry %d in journal entries is for segment %d",i, le32_to_cpu(segno_in_journal(info->sit_sums, i))); 222 /* Read the 1st cp block in this CP pack */ 235 /* Read the 2nd cp block in this CP pack */ 443 SLOGE("Error getting SIT entries in summary area"); 504 /* check the SIT entries in the journal */ 595 char *in = argv[1]; local 599 if ((infd = open(in, O_RDONLY)) < 0) {
|
/toolchain/binutils/binutils-2.25/bfd/ |
coffswap.h | 12 This program is distributed in the hope that it will be useful, 41 #define PUT_FCN_LNNOPTR(abfd, in, ext) \ 42 H_PUT_32 (abfd, in, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr) 45 #define PUT_FCN_ENDNDX(abfd, in, ext) \ 46 H_PUT_32 (abfd, in, ext->x_sym.x_fcnary.x_fcn.x_endndx) 57 #define PUT_LNSZ_LNNO(abfd, in, ext) \ 58 H_PUT_16 (abfd, in, ext->x_sym.x_misc.x_lnsz.x_lnno) 61 #define PUT_LNSZ_SIZE(abfd, in, ext) \ 62 H_PUT_16 (abfd, in, ext->x_sym.x_misc.x_lnsz.x_size) 77 #define PUT_SCN_SCNLEN(abfd, in, ext) 308 struct internal_syment *in = (struct internal_syment *) in1; local 340 struct internal_syment *in = (struct internal_syment *) inp; local 389 union internal_auxent *in = (union internal_auxent *) in1; local 492 union internal_auxent * in = (union internal_auxent *) inp; local 583 struct internal_lineno *in = (struct internal_lineno *) in1; local 592 struct internal_lineno *in = (struct internal_lineno *) inp; local [all...] |
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/ |
ResponseCacheTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 129 // Test each documented HTTP/1.1 code, plus the first unused value in each range. 240 InputStream in = urlConnection.getInputStream(); local 242 reliableSkip(in, "puppies but hate ".length()); 244 assertEquals(-1, in.read()); 245 in.close(); 248 in = urlConnection.getInputStream(); 254 assertEquals(-1, in.read()); 255 in.close() 514 InputStream in = connection.getInputStream(); local [all...] |
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/ |
UrlConnectionCacheTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 112 // Test each documented HTTP/1.1 code, plus the first unused value in each range. 224 InputStream in = urlConnection.getInputStream(); local 226 reliableSkip(in, "puppies but hate ".length()); 228 assertEquals(-1, in.read()); 229 in.close(); 234 in = urlConnection.getInputStream(); 240 assertEquals(-1, in.read()); 241 in.close() 447 InputStream in = connection.getInputStream(); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
ObjectOutputStreamTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 170 private void readObject(java.io.ObjectInputStream in) 173 in.readObject(); 192 public void readObject(java.io.ObjectInputStream in) 195 in.readObject(); 222 private void readObject(java.io.ObjectInputStream in) 225 in.defaultReadObject(); 318 private void readObject(java.io.ObjectInputStream in) 320 in.defaultReadObject() [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
SocketTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 117 SocketChannel in = ssc.accept(); local 119 in.socket().setTcpNoDelay(false); 122 InetSocketAddress listenAddress = (InetSocketAddress) in.socket().getLocalSocketAddress(); 125 InetSocketAddress inLocalAddress = (InetSocketAddress) in.socket().getLocalSocketAddress(); 126 InetSocketAddress inRemoteAddress = (InetSocketAddress) in.socket().getRemoteSocketAddress(); 144 assertTrue(in.isConnected()); 145 assertTrue(in.socket().isConnected()); 149 in.close() 254 InputStream in = socket.getInputStream(); local 317 InputStream in = socket.getInputStream(); local 470 InputStream in = socket.getInputStream(); local [all...] |
/frameworks/base/core/java/com/android/internal/app/procstats/ |
ProcessStats.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 159 // In-memory Parcel magic number, used to detect attempts to unmarshall bad data 213 public ProcessStats(Parcel in) { 215 readFromParcel(in); 323 public ProcessStats createFromParcel(Parcel in) { 324 return new ProcessStats(in); 460 // Finally prune out any common processes that are no longer in use. 467 // be back down to one package. In that case, we want to revert back 642 private void readCompactedLongArray(Parcel in, int version, long[] array, int num) 876 Parcel in = Parcel.obtain(); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-jsch.jar | |
/prebuilts/tools/common/m2/repository/com/sun/xml/dtd-parser/dtd-parser/1.1/ |
dtd-parser-1.1.jar | |
/dalvik/dx/src/com/android/dx/merge/ |
DexMerger.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 192 * result in too many bytes wasted, compact the result. To compact, 224 * merged dex file. Populates maps from old to new indices in the process. 251 // Fill in values with the first value of each dex. 273 private int readIntoMap(Dex.Section in, TableOfContents.Section section, IndexMap indexMap, 275 int offset = in != null ? in.getPosition() : -1; 277 T v = read(in, indexMap, index); 290 * sorting in memory 325 Dex.Section in = source.open(section.off); local 533 Dex in = type.getDex(); local [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
MessageFormat.java | 51 * The arguments can occur in any order, which is necessary for translation 55 * with arguments in {curly braces} which will be replaced by formatted values. 58 * classes in that you create a <code>MessageFormat</code> object with one 69 * <p>An argument might not specify any format type. In this case, 85 * a typeless argument in the pattern string 133 * <li>Quotable syntax characters are the {curly braces} in all messageText parts, 134 * plus the '#' sign in a messageText immediately inside a pluralStyle, 135 * and the '|' symbol in a messageText immediately inside a choiceStyle. 137 * <li>In argStyleText, every single ASCII apostrophe begins and ends quoted literal text, 138 * and unquoted {curly braces} must occur in matched pairs [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
MessageFormat.java | 50 * The arguments can occur in any order, which is necessary for translation 54 * with arguments in {curly braces} which will be replaced by formatted values. 57 * classes in that you create a <code>MessageFormat</code> object with one 68 * <p>An argument might not specify any format type. In this case, 84 * a typeless argument in the pattern string 132 * <li>Quotable syntax characters are the {curly braces} in all messageText parts, 133 * plus the '#' sign in a messageText immediately inside a pluralStyle, 134 * and the '|' symbol in a messageText immediately inside a choiceStyle. 136 * <li>In argStyleText, every single ASCII apostrophe begins and ends quoted literal text, 137 * and unquoted {curly braces} must occur in matched pairs [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
CacheTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 103 // Test each documented HTTP/1.1 code, plus the first unused value in each range. 207 * Skipping bytes in the input stream caused ResponseCache corruption. 258 BufferedSource in = response1.body().source(); local 259 assertEquals("ABC", in.readUtf8()); 375 * in practice redirects mean that each can do either. 526 BufferedSource in = response1.body().source(); local 527 assertEquals("ABCDE", in.readUtf8(5)); 528 in.close() [all...] |
/frameworks/base/core/java/android/widget/ |
ProgressBar.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 68 * Visual indicator of progress in some operation. Displays a bar to the user 77 * A progress bar can also be made indeterminate. In indeterminate mode, the 103 * // Start lengthy operation in a background thread 244 /** Value used to track progress animation, in the range [0...1]. */ 441 final StateListDrawable in = (StateListDrawable) dr; local 442 final int N = in.getStateCount(); 444 if (needsTileify(in.getStateDrawable(i))) { 497 final StateListDrawable in = (StateListDrawable) drawable local [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WifiConfiguration.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 155 /** AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0] */ 166 * CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0] 181 /** AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0] */ 227 * which must be enclosed in double quotation marks 229 * hex digits,which are not enclosed in quotes 236 * a string in the format of an Ethernet MAC address, e.g., 279 * Up to four WEP keys. Either an ASCII string enclosed in double 463 * the network we need to be before autojoin kicks in [all...] |
/bionic/libc/kernel/uapi/rdma/ |
ib_user_cm.h | 52 __u16 in; member in struct:ib_ucm_cmd_hdr
|
/bionic/libc/kernel/uapi/sound/ |
hdspm.h | 166 unsigned int in[HDSPM_MIXER_CHANNELS]; member in struct:hdspm_channelfader
|
/build/kati/ |
func.cc | 4 // you may not use this file except in compliance with the License. 9 // Unless required by applicable law or agreed to in writing, software 56 const char* in = cmd->c_str(); local 57 for (; *in && !done; in++) { 58 switch (*in) { 61 while (in[1] && *in != '\n') 62 in++; 70 if (quote == *in) 140 const string&& in = args[1]->Eval(ev); local [all...] |
ninja.cc | 4 // you may not use this file except in compliance with the License. 9 // Unless required by applicable law or agreed to in writing, software 118 ERROR("Cannot find the depfile in %s", cmd.as_string().c_str()); 233 // A hack to exclude out phony target in Android. If this exists, 257 StringPiece TranslateCommand(const char* in, string* cmd_buf) { 264 for (; *in; in++) { 265 switch (*in) { 268 while (in[1] && *in != '\n' 418 const char* in = c->cmd.c_str(); local [all...] |
/cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/ |
CreatePrivateDataTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 139 * Check to ensure the private file created in testCreatePrivateData does not exist. 227 InputStream in = socket.getInputStream(); local 231 int n = in.read(buf);
|
/cts/tests/tests/media/src/android/media/cts/ |
DecoderConformanceTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 91 BufferedReader in = new BufferedReader(new InputStreamReader(is, "UTF-8")); local 96 while ((str = in.readLine()) != null) { 274 // Release mediacodec in failure or exception cases.
|
ExifInterfaceTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 333 InputStream in = null; local 335 in = getContext().getAssets().open(imageFile.getName()); 336 exifInterface = new ExifInterface(in); 339 IoUtils.closeQuietly(in); 343 in = null; 345 in = new BufferedInputStream(new FileInputStream(imageFile.getAbsolutePath())); 346 exifInterface = new ExifInterface(in); 349 IoUtils.closeQuietly(in); 422 InputStream in = null; local [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
TrafficStatsTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 39 // We can't assume a mobile network is even present in this test, so 161 InputStream in = socket.getInputStream(); local 164 int n = in.read(buf);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ForEachTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 65 Allocation in = Allocation.createTyped(mRS, t); local 68 fe_all.forEach_test_i8(in, out); 71 fe_all.forEach_test_i8(in, badOut); 79 in = Allocation.createTyped(mRS, t); 82 fe_all.forEach_test_i8_2(in, out); 85 fe_all.forEach_test_i8_2(in, badOut); 93 in = Allocation.createTyped(mRS, t); 96 fe_all.forEach_test_i8_3(in, out) [all...] |
KernelTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 65 Allocation in = Allocation.createTyped(mRS, t); local 68 kernel_all.forEach_test_i8(in, out); 71 kernel_all.forEach_test_i8(in, badOut); 79 in = Allocation.createTyped(mRS, t); 82 kernel_all.forEach_test_i8_2(in, out); 85 kernel_all.forEach_test_i8_2(in, badOut); 93 in = Allocation.createTyped(mRS, t); 96 kernel_all.forEach_test_i8_3(in, out) [all...] |