HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 101 - 125 of 36630) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/compiler-rt/test/tsan/
deflake.bash 10 for i in $(seq 1 10); do
  /external/jemalloc/include/jemalloc/internal/
private_namespace.sh 3 for symbol in `cat $1` ; do
  /external/kmod/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix/etc/depmod.d/
search.conf 1 search foobar foo built-in
  /external/tpm2/
FlushContext.c 18 FlushContext_In *in // IN: input parameter list
24 switch(HandleGetType(in->flushHandle))
27 if(!ObjectIsPresent(in->flushHandle))
30 ObjectFlush(in->flushHandle);
34 if( !SessionIsLoaded(in->flushHandle)
35 && !SessionIsSaved(in->flushHandle)
41 if(in->flushHandle == g_exclusiveAuditSession)
45 SessionFlush(in->flushHandle);
NV_Read.c 24 NV_Read_In *in, // IN: input parameter list
34 NvGetIndexInfo(in->nvIndex, &nvIndex);
39 result = NvReadAccessChecks(in->authHandle, in->nvIndex);
44 if((in->size + in->offset) > nvIndex.publicArea.dataSize)
50 out->data.t.size = in->size;
52 NvGetIndexData(in->nvIndex, &nvIndex, in->offset, in->size, out->data.t.buffer)
    [all...]
  /external/valgrind/none/tests/linux/
brk-overflow1.stderr.exp 2 brk segment overflow in thread #1: can't grow to 0x........
brk-overflow2.stderr.exp 2 brk segment overflow in thread #1: can't grow to 0x........
3 brk segment overflow in thread #1: can't grow to 0x........
4 brk segment overflow in thread #1: can't grow to 0x........
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/
depend.stg 5 * dependencies and generated files. in and out
9 dependencies(grammarFileName,in,out) ::= <<
10 <if(in)><grammarFileName>: <in; separator=", "><endif>
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISms.aidl 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
43 List<SmsRawData> getAllMessagesFromIccEfForSubscriber(in int subId, String callingPkg);
57 boolean updateMessageOnIccEfForSubscriber(in int subId, String callingPkg,
58 int messageIndex, int newStatus, in byte[] pdu);
70 boolean copyMessageToIccEfForSubscriber(in int subId, String callingPkg, int status,
71 in byte[] pdu, in byte[] smsc);
91 * which cause smaller number of SMS to be sent in checking period.
94 * raw pdu of the status report is in the extended data ("pdu")
    [all...]
  /system/tpm/trunks/aidl/android/trunks/
ITrunks.aidl 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
22 oneway void SendCommand(in byte[] command, in ITrunksClient client);
23 byte[] SendCommandAndWait(in byte[] command);
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/
stream_extract.pass.cpp 26 std::istringstream in("a bc defghij");
28 in >> s;
29 assert(in.good());
31 assert(in.peek() == ' ');
32 in >> s;
33 assert(in.good());
35 assert(in.peek() == ' ');
36 in.width(3);
37 in >> s;
38 assert(in.good())
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.io/
stream_extract.pass.cpp 26 std::istringstream in("a bc defghij");
28 in >> s;
29 assert(in.good());
31 assert(in.peek() == ' ');
32 in >> s;
33 assert(in.good());
35 assert(in.peek() == ' ');
36 in.width(3);
37 in >> s;
38 assert(in.good())
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.nonmembers/string.io/
stream_extract.pass.cpp 26 std::istringstream in("a bc defghij");
28 in >> s;
29 assert(in.good());
31 assert(in.peek() == ' ');
32 in >> s;
33 assert(in.good());
35 assert(in.peek() == ' ');
36 in.width(3);
37 in >> s;
38 assert(in.good())
    [all...]
  /frameworks/base/core/java/android/app/admin/
IDevicePolicyManager.aidl 6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
46 void setPasswordQuality(in ComponentName who, int quality, boolean parent);
47 int getPasswordQuality(in ComponentName who, int userHandle, boolean parent);
49 void setPasswordMinimumLength(in ComponentName who, int length, boolean parent);
50 int getPasswordMinimumLength(in ComponentName who, int userHandle, boolean parent);
52 void setPasswordMinimumUpperCase(in ComponentName who, int length, boolean parent);
53 int getPasswordMinimumUpperCase(in ComponentName who, int userHandle, boolean parent);
55 void setPasswordMinimumLowerCase(in ComponentName who, int length, boolean parent);
56 int getPasswordMinimumLowerCase(in ComponentName who, int userHandle, boolean parent)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
ISO7816d4Padding.java 8 * A padder that adds the padding according to the scheme referenced in
36 * add the pad bytes to the passed in block, returning the
40 byte[] in,
43 int added = (in.length - inOff);
45 in [inOff]= (byte) 0x80;
48 while (inOff < in.length)
50 in[inOff] = (byte) 0;
58 * return the number of pad bytes present in the block.
60 public int padCount(byte[] in)
63 int count = in.length - 1
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /frameworks/base/location/java/android/location/
IGnssStatusListener.aidl 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
29 void onSvStatusChanged(int svCount, in int[] svidWithFlags, in float[] cn0s,
30 in float[] elevations, in float[] azimuths,
31 in float[] carrierFreqs);
  /frameworks/base/media/java/android/media/tv/
ITvInputServiceCallback.aidl 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
27 void addHardwareInput(in int deviceId, in TvInputInfo inputInfo);
28 void addHdmiInput(in int id, in TvInputInfo inputInfo);
29 void removeHardwareInput(in String inputId);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 41 char in[] = "ABC"; local
42 t.setp(in, in+sizeof(in)/sizeof(in[0]));
46 wchar_t in[] = L"ABC"; local
47 t.setp(in, in+sizeof(in)/sizeof(in[0]))
    [all...]
  /frameworks/rs/tests/lldb/cpp/Allocations/
allocs.rs 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
21 uchar4 __attribute__((kernel)) swizzle_kernel(uchar4 in)
23 return in.wzyx;
26 // Kernel squares every element in allocation
27 uint __attribute__((kernel)) square_kernel(ushort in)
29 uint result = (uint)in * (uint)in;
33 // Helper function adding 1/2 to passed in double
34 static double half_helper(double in)
    [all...]
  /frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
allocs.rs 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
21 uchar4 __attribute__((kernel)) swizzle_kernel(uchar4 in)
23 return in.wzyx;
26 // Kernel squares every element in allocation
27 uint __attribute__((kernel)) square_kernel(ushort in)
29 uint result = (uint)(in) * (uint)in;
33 // Helper function adding 1/2 to passed in double
34 static double half_helper(double in)
    [all...]
  /system/update_engine/binder_bindings/android/brillo/
IUpdateEngine.aidl 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
23 void AttemptUpdate(in String app_version, in String omaha_url, in int flags);
24 void AttemptRollback(in boolean powerwash);
29 void SetChannel(in String target_channel, in boolean powewash);
30 String GetChannel(in boolean get_current_channel);
31 void SetCohortHint(in String cohort_hint)
    [all...]
  /frameworks/base/core/java/android/bluetooth/le/
IScannerCallback.aidl 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
25 void onScannerRegistered(in int status, in int scannerId);
27 void onScanResult(in ScanResult scanResult);
28 void onBatchScanResults(in List<ScanResult> batchResults);
29 void onFoundOrLost(in boolean onFound, in ScanResult scanResult);
30 void onScanManagerErrorCallback(in int errorCode);
  /frameworks/base/core/java/android/content/
IRestrictionsManager.aidl 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
28 Bundle getApplicationRestrictions(in String packageName);
30 void requestPermission(in String packageName, in String requestType, in String requestId,
31 in PersistableBundle requestData);
32 void notifyPermissionResponse(in String packageName, in PersistableBundle response);

Completed in 1030 milliseconds

1 2 3 45 6 7 8 91011>>