HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 1 - 25 of 19007) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/
IBluetoothGattServerCallback.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
26 void onServerRegistered(in int status, in int serverIf);
27 void onScanResult(in String address, in int rssi, in byte[] advData);
28 void onServerConnectionState(in int status, in int serverIf,
29 in boolean connected, in String address)
    [all...]
IBluetoothGattCallback.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
26 void onClientRegistered(in int status, in int clientIf);
27 void onClientConnectionState(in int status, in int clientIf,
28 in boolean connected, in String address);
29 void onScanResult(in String address, in int rssi, in byte[] advData)
    [all...]
IBluetoothGatt.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
30 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
32 void startScan(in int appIf, in boolean isServer);
33 void startScanWithUuids(in int appIf, in boolean isServer, in ParcelUuid[] ids);
34 void stopScan(in int appIf, in boolean isServer)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbln.c 5 * Redistribution and use in source and binary forms, with or without
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 int in; local
38 in = (int)n;
39 if (in != n) {
41 in = INT_MAX
51 int in; local
66 int in; local
    [all...]
  /frameworks/base/location/java/android/location/
IFusedGeofenceHardware.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
44 void addGeofences(in GeofenceHardwareRequestParcelable[] geofenceRequestsArray);
51 void removeGeofences(in int[] geofenceIds);
58 void pauseMonitoringGeofence(in int geofenceId);
66 * Remarks: keep naming of geofence request options consistent with the naming used in
69 void resumeMonitoringGeofence(in int geofenceId, in int monitorTransitions);
87 in int geofenceId,
88 in int lastTransition
    [all...]
  /external/chromium_org/ppapi/api/private/
ppp_content_decryptor_private.idl 3 * found in the LICENSE file.
26 * @param[in] key_system A <code>PP_Var</code> of type
30 [in] PP_Instance instance,
31 [in] PP_Var key_system);
36 * containing data for use in generating the request.
38 * Note: <code>CreateSession()</code> must create the session ID used in
43 * @param[in] session_id A reference for the session for which a session
46 * @param[in] type A <code>PP_Var</code> of type
49 * @param[in] init_data A <code>PP_Var</code> of type
54 [in] PP_Instance instance
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ILockSettings.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
21 void setBoolean(in String key, in boolean value, in int userId);
22 void setLong(in String key, in long value, in int userId);
23 void setString(in String key, in String value, in int userId)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_sequence_free.c 4 * algorithms in a highly modular and flexible manner.
22 @param in The list to free
24 void der_sequence_free(ltc_asn1_list *in)
29 while (in->prev != NULL || in->parent != NULL) {
30 if (in->parent != NULL) {
31 in = in->parent;
33 in = in->prev
    [all...]
  /external/valgrind/main/none/tests/amd64/
smc1.stdout.exp 0 in p 0
2 in q 1
3 in p 2
4 in q 3
5 in p 4
6 in q 5
7 in p 6
8 in q 7
9 in p 8
10 in q
    [all...]
  /external/valgrind/main/none/tests/x86/
smc1.stdout.exp 0 in p 0
2 in q 1
3 in p 2
4 in q 3
5 in p 4
6 in q 5
7 in p 6
8 in q 7
9 in p 8
10 in q
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
tolower_many.pass.cpp 32 std::string in("\xDA A\x07.a1");
34 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == '\xFA');
36 assert(in[1] == ' ');
37 assert(in[2] == 'a');
38 assert(in[3] == '\x07')
    [all...]
toupper_many.pass.cpp 32 std::string in("\xFA A\x07.a1");
34 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == '\xDA');
36 assert(in[1] == ' ');
37 assert(in[2] == 'A');
38 assert(in[3] == '\x07')
    [all...]
  /external/chromium_org/ppapi/api/trusted/
ppb_file_chooser_trusted.idl 3 * found in the LICENSE file.
27 * @param[in] chooser The file chooser resource.
28 * @param[in] save_as A <code>PP_Bool</code> value indicating if this dialog
30 * @param[in] suggested_file_name If saving, the suggested name for the
32 * @param[in] callback A <code>CompletionCallback</code> to be called after
40 [in] PP_Resource chooser,
41 [in] PP_Bool save_as,
42 [in] PP_Var suggested_file_name,
43 [in] PP_CompletionCallback callback);
52 * @param[in] chooser The file chooser resource
    [all...]
ppb_url_loader_trusted.idl 3 * found in the LICENSE file.
19 [in] PP_Instance pp_instance,
20 [in] PP_Resource pp_resource,
21 [in] int64_t bytes_sent,
22 [in] int64_t total_bytes_to_be_sent,
23 [in] int64_t bytes_received,
24 [in] int64_t total_bytes_to_be_received);
32 void GrantUniversalAccess([in] PP_Resource loader);
48 [in] PP_Resource loader,
49 [in] PP_URLLoaderTrusted_StatusCallback cb)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
scan_is.pass.cpp 29 const std::string in(" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
32 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in.data() == 0)
    [all...]
scan_not.pass.cpp 29 const std::string in(" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
32 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
scan_is.pass.cpp 29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
32 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in.data() == 0)
    [all...]
scan_not.pass.cpp 29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
32 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in.data() == 2)
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppp_video_capture_dev.idl 3 * found in the LICENSE file.
31 void OnDeviceInfo([in] PP_Instance instance,
32 [in] PP_Resource video_capture,
33 [in] PP_VideoCaptureDeviceInfo_Dev info,
34 [in] uint32_t buffer_count,
35 [in, size_is(buffer_count)] PP_Resource[] buffers);
41 void OnStatus([in] PP_Instance instance,
42 [in] PP_Resource video_capture,
43 [in] uint32_t status);
52 void OnError([in] PP_Instance instance
    [all...]
ppp_video_decoder_dev.idl 3 * found in the LICENSE file.
25 * given in the parameters cannot be allocated decoder should be destroyed.
34 * |texture_target| the type of texture used. Sample targets in use are
39 [in] PP_Instance instance,
40 [in] PP_Resource decoder,
41 [in] uint32_t req_num_of_bufs,
42 [in] PP_Size dimensions,
43 [in] uint32_t texture_target);
55 [in] PP_Instance instance,
56 [in] PP_Resource decoder
    [all...]
ppp_scrollbar_dev.idl 3 * found in the LICENSE file.
19 void ValueChanged([in] PP_Instance instance,
20 [in] PP_Resource scrollbar,
21 [in] uint32_t value);
28 void OverlayChanged([in] PP_Instance instance,
29 [in] PP_Resource scrollbar,
30 [in] PP_Bool overlay);
  /external/chromium_org/ppapi/api/
ppp_instance.idl 3 * found in the LICENSE file.
8 * pointers to methods that you must implement in your module.
18 * functions that you must implement in your module. These functions can be
32 * <code>PP_Instance</code> handle will be used in subsequent calls to
35 * It's possible for more than one instance to be created in a single module.
37 * <code>OnDestroy</code> in between, and should be prepared to maintain
43 * @param[in] instance A new <code>PP_Instance</code> identifying one
46 * @param[in] argc The number of arguments contained in <code>argn</code>
49 * @param[in] argn An array of argument names. These argument names ar
    [all...]
ppb_file_ref.idl 3 * found in the LICENSE file.
8 * file in a file system.
17 * The <code>PPB_FileRef</code> struct represents a "weak pointer" to a file in
23 * Create() creates a weak pointer to a file in the given file system. File
26 * @param[in] resource A <code>PP_Resource</code> corresponding to a file
28 * @param[in] path A path to the file. Must begin with a '/' character.
33 PP_Resource Create([in] PP_Resource file_system, [in] str_t path);
37 * @param[in] resource A <code>PP_Resource</code> corresponding to a file
44 PP_Bool IsFileRef([in] PP_Resource resource)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/boolean/
der_decode_boolean.c 4 * algorithms in a highly modular and flexible manner.
23 @param in The destination for the DER encoded BOOLEAN
28 int der_decode_boolean(const unsigned char *in, unsigned long inlen,
31 LTC_ARGCHK(in != NULL);
34 if (inlen != 3 || in[0] != 0x01 || in[1] != 0x01 || (in[2] != 0x00 && in[2] != 0xFF)) {
38 *out = (in[2]==0xFF) ? 1 : 0;
  /frameworks/base/core/java/android/accounts/
IAccountAuthenticator.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
31 void addAccount(in IAccountAuthenticatorResponse response, String accountType,
32 String authTokenType, in String[] requiredFeatures, in Bundle options);
37 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account,
38 in Bundle options);
43 void getAuthToken(in IAccountAuthenticatorResponse response, in Account account
    [all...]

Completed in 771 milliseconds

1 2 3 4 5 6 7 8 91011>>