HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 776 - 800 of 3217) sorted by null

<<31323334353637383940>>

  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
netfilter.h 72 struct in_addr in; member in union:nf_inet_addr
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
codecvt.h 11 // This library is distributed in the hope that it will be useful,
17 // permissions described in the GCC Runtime Library Exception, version
89 * The characters in [from,from_end) are converted and written to
102 * the input ends early or there is insufficient space in the
131 * the state in initial conditions, rather than partial conversion
135 * character, and input to in() had 6 external characters with state
169 * The characters in [from,from_end) are converted and written to
182 * the input ends early or there is insufficient space in the
196 in(state_type& __state, const extern_type* __from, function in class:__codecvt_abstract_base
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future.py 89 # the parser hack disabled. If a new keyword is introduced in
111 exec "from __future__ import unicode_literals; x = ''" in scope namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future.py 89 # the parser hack disabled. If a new keyword is introduced in
111 exec "from __future__ import unicode_literals; x = ''" in scope namespace
  /system/extras/verity/
verify_boot_signature.c 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
90 * @param offset Receives the offset in bytes
132 BIO *in = NULL; local
142 if ((in = BIO_new_fd(fd, BIO_NOCLOSE)) == NULL) {
147 if ((*bs = ASN1_item_d2i_bio(ASN1_ITEM_rptr(BootSignature), in, bs)) == NULL) {
149 BIO_free(in);
153 BIO_free(in);
159 * the length in authenticated attributes matches the actual length of
193 /* Confirm that the length of the image matches with the length in
    [all...]
  /system/security/keystore/
user_state.cpp 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
107 int in = TEMP_FAILURE_RETRY(open(src->getMasterKeyFileName(), O_RDONLY)); local
108 if (in < 0) {
112 size_t length = readFully(in, (uint8_t*)&rawBlob, sizeof(rawBlob));
113 if (close(in) != 0) {
143 int in = TEMP_FAILURE_RETRY(open(mMasterKeyFile, O_RDONLY)); local
144 if (in < 0) {
151 size_t length = readFully(in, (uint8_t*)&rawBlob, sizeof(rawBlob));
152 if (close(in) != 0)
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
cpu-arm.c 12 This program is distributed in the hope that it will be useful,
159 unsigned int in = bfd_get_mach (ibfd); local
164 bfd_set_arch_mach (obfd, bfd_arch_arm, in);
168 else if (in == bfd_mach_arm_unknown)
174 else if (out == in)
184 else if (in == bfd_mach_arm_ep9312
196 && (in == bfd_mach_arm_XScale
197 || in == bfd_mach_arm_iWMMXt
198 || in == bfd_mach_arm_iWMMXt2))
206 else if (in > out
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
pex-common.c 1 /* Common code for executing a program in a sub-process.
11 Libiberty is distributed in the hope that it will be useful,
130 descriptor from mkstemps, not from a function in
158 int in, out, errdes; local
165 in = -1;
182 /* Set IN. */
191 in = obj->funcs->open_read (obj, obj->next_input_name,
193 if (in < 0)
208 in = obj->next_input;
209 if (in < 0
    [all...]
  /art/test/577-profile-foreign-dex/src/
Main.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
143 FileInputStream in = new FileInputStream(fromFile); local
148 while ((bytesRead = in.read(buffer)) >= 0) {
158 in.close();
  /cts/hostsidetests/sustainedperf/src/android/SustainedPerformance/cts/
SustainedPerformanceHostTest.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
118 Scanner in = new Scanner(logs); local
119 while (in.hasNextLine()) {
120 String line = in.nextLine();
146 in.close();
180 Scanner in = new Scanner(logs); local
181 while (in.hasNextLine()) {
182 String line = in.nextLine();
187 in.close()
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageFetcher.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
182 * The main process method, which will be called by the ImageWorker in the AsyncTask background
185 * @param data The data to load the bitmap, in this case, a regular http URL
210 Log.d(TAG, "processBitmap, not found in http cache, downloading...");
270 BufferedInputStream in = null; local
275 in = new BufferedInputStream(urlConnection.getInputStream(), IO_BUFFER_SIZE);
279 while ((b = in.read()) != -1) {
284 Log.e(TAG, "Error in downloadBitmap - " + e);
293 if (in != null)
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageFetcher.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
182 * The main process method, which will be called by the ImageWorker in the AsyncTask background
185 * @param data The data to load the bitmap, in this case, a regular http URL
210 Log.d(TAG, "processBitmap, not found in http cache, downloading...");
270 BufferedInputStream in = null; local
275 in = new BufferedInputStream(urlConnection.getInputStream(), IO_BUFFER_SIZE);
279 while ((b = in.read()) != -1) {
284 Log.e(TAG, "Error in downloadBitmap - " + e);
293 if (in != null)
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageFetcher.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
182 * The main process method, which will be called by the ImageWorker in the AsyncTask background
185 * @param data The data to load the bitmap, in this case, a regular http URL
210 Log.d(TAG, "processBitmap, not found in http cache, downloading...");
270 BufferedInputStream in = null; local
275 in = new BufferedInputStream(urlConnection.getInputStream(), IO_BUFFER_SIZE);
279 while ((b = in.read()) != -1) {
284 Log.e(TAG, "Error in downloadBitmap - " + e);
293 if (in != null)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
EmpiricalDistributionImpl.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
49 * <li>Generate a uniformly distributed value in (0,1) </li>
89 /** upper bounds of subintervals in (0,1) "belonging" to the bins */
92 /** RandomData instance to use in repeated calls to getNext() */
117 * @param in the input data array
119 public void load(double[] in) {
120 DataAdapter da = new ArrayDataAdapter(in);
123 fillBinStats(in);
138 BufferedReader in local
166 BufferedReader in = new BufferedReader(new FileReader(file)); local
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
SimpleLog.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
49 * included in output messages. Defaults to <code>false</code>.</li>
52 * included in output messages. Defaults to <code>true</code>.</li>
55 * to be included in output messages. Default is <code>false</code>.</li>
57 * The date and time format to be used in the output messages.
59 * used in <code>java.text.SimpleDateFormat</code>. If the format is not
64 * <p>In addition to looking for system properties with the names specified
96 /** Include the instance name in the log message? */
98 /** Include the short name ( last component ) of the logger in the lo
159 InputStream in = getResourceAsStream("simplelog.properties"); typedefs
162 simpleLogProps.load(in); typedefs
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
CompatibilityTest.java 103 ObjectInputStream in = new ObjectInputStream(inputStream); local
104 Object inputObjects[] = (Object[]) in.readObject();
107 in.close();
153 // GeneralMeasureFormat was in technical preview, but is going away after ICU 52.1.
214 private static InputStream copyInputStream(InputStream in) throws IOException {
219 int r = in.read(buf);
227 in.close();
310 * The path to an actual data resource file in the JAR. This is needed because when the
320 // Get the URL to an actual resource and then compute the URL to the directory just in
321 // case the resources are in a JAR file that doesn't have entries for directories
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
CompatibilityTest.java 99 ObjectInputStream in = new ObjectInputStream(inputStream); local
100 Object inputObjects[] = (Object[]) in.readObject();
103 in.close();
149 // GeneralMeasureFormat was in technical preview, but is going away after ICU 52.1.
210 private static InputStream copyInputStream(InputStream in) throws IOException {
215 int r = in.read(buf);
223 in.close();
306 * The path to an actual data resource file in the JAR. This is needed because when the
316 // Get the URL to an actual resource and then compute the URL to the directory just in
317 // case the resources are in a JAR file that doesn't have entries for directories
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/resource/
Resource.java 413 * Returns a list of resource names contained in the given resource
549 * Encode any characters that could break the URI string in an HREF.
619 InputStream in = getInputStream(); local
622 in.skip(start);
624 IO.copy(in,out);
626 IO.copy(in,out,count);
630 in.close();
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableXZInputStream.java 24 * Decompresses a .xz file in random access mode.
29 * The Indexes from all Streams are loaded in RAM by a constructor of this
33 * To make random access possible, the data in a .xz file must be splitted
43 * Stream from the data structures in RAM. It was the simplest to implement
64 * liblzma in XZ Utils supports starting a new Block with
80 private SeekableInputStream in; field in class:SeekableXZInputStream
96 * List of IndexDecoders, one for each Stream in the file.
97 * The list is in reverse order: The first element is
98 * the last Stream in the file.
113 * Uncompressed size of the largest XZ Block in the file
    [all...]
  /external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
Main.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
74 InputStream in = Main.class.getResourceAsStream("/okcurl-version.properties"); local
75 prop.load(in);
76 in.close();
112 @Option(name = { "-i", "--include" }, description = "Include protocol headers in the output")
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SimpleLog.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
49 * <code>true</code> if you want the Log instance name to be included in output
53 * included in output messages. Defaults to <code>true</code>.</li>
55 * <code>true</code> if you want the current date and time to be included in
58 * date and time format to be used in the output messages. The pattern
59 * describing the date and time format is the same that is used in
66 * In addition to looking for system properties with the names specified above,
93 /** Include the instance name in the log message? */
96 * Include the short name ( last component ) of the logger in the log message
156 InputStream in = getResourceAsStream("simplelog.properties"); typedefs
159 simpleLogProps.load(in); typedefs
    [all...]
  /external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/
SimpleLogger.java 7 * "Software"), to deal in the Software without restriction, including
14 * included in all copies or substantial portions of the Software.
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
64 * time to be included in output messages. Default is <code>false</code></li>
66 * <li><code>org.slf4j.simpleLogger.dateTimeFormat</code> - The date and time format to be used in the output messages.
75 * to be included in output messages. Defaults to <code>true</code>.</li>
78 * of the name to be included in output messages. Defaults to <code>false</code>.</li
231 InputStream in = AccessController.doPrivileged(new PrivilegedAction<InputStream>() { local
    [all...]

Completed in 2445 milliseconds

<<31323334353637383940>>