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

1 2 3 4 5 6 7 8 91011>>

  /system/bt/service/doc/
IBluetoothGattServerCallback.txt 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 onServerRegistered(in int status, in int server_if);
34 * been published and is discoverable. In this case handles of added service,
37 void onServiceAdded(in int status, in BluetoothGattServer service_id);
53 void onCharacteristicReadRequest(in String device_address, in int request_id,
54 in int offset, in boolean is_long
    [all...]
IBluetoothGattServer.txt 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 * be returned in a callback to the application that can be used to perform
27 * GATT server operations. Returns false in case of an error.
29 boolean registerServer(in IBluetoothGattServerCallback callback);
34 void unregisterServer(in int server_if);
42 * Adds new GATT service. This will execute synchronously, and result in
47 boolean AddService(int server_id, in BluetoothGattService service);
55 * The |status| field should contain the result of the operation. In the case
56 * of success, the application should pass in "0". Otherwise this shoul
    [all...]
IBluetoothGattClient.txt 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 boolean registerClient(in IBluetoothGattClientCallback callback);
36 void unregisterClient(in int client_id);
45 * database of remote device with address |device_address|. Returns false in
49 boolean refreshDevice(in int client_id, in String device_address);
56 * results will be returned from the attribute cache. Returns false in case of
59 boolean discoverServices(in int client_id, in String device_address)
    [all...]
IBluetoothLowEnergyCallback.txt 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 onClientRegistered(in int status, in int client_if);
33 void OnConnectionState(in int status, in int client_id, in const char* address,
34 in bool connected);
39 void OnMtuChanged(in int status, in const char* address, in int mtu)
    [all...]
IBluetoothGattClientCallback.txt 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 void onClientRegistered(in int status, in int client_id);
38 void onGetService(in boolean is_primary, in GattIdentifier service_id);
44 void onGetIncludedService(in GattIdentifier included_service_id);
50 * characteristic properties as defined in the Bluetooth Core Specification.
52 void onGetCharacteristic(in GattIdentifier characteristic_id,
53 in int properties)
    [all...]
IBluetoothCallback.txt 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 onBluetoothStateChange(in int prev_state, in int new_state);
IBluetoothLowEnergy.txt 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 * instance. A special client interface ID will be returned in a callback to
25 * false in case of an error.
27 boolean registerClient(in IBluetoothLowEnergyCallback callback);
33 void unregisterClient(in int client_if);
44 boolean Connect(in int client_id, in const char* address,
45 in boolean is_direct);
50 boolean Disconnect(in int client_id, in const char* address)
    [all...]
  /external/clang/tools/scan-build-py/tests/functional/src/
broken-one.c 3 int value(int in)
5 return 2 * in;
  /system/bt/binder/android/bluetooth/le/
IAdvertisingSetCallback.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 onAdvertisingSetStarted(in int advertiserId, in int tx_power, in int status);
24 void onOwnAddressRead(in int advertiserId, in int addressType, in String address);
25 void onAdvertisingSetStopped(in int advertiserId);
26 void onAdvertisingEnabled(in int advertiserId, in boolean enable, in int status)
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_idct_intrin_sse2.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
18 __m128i in[2]; local
21 in[0] = load_input_data8(input);
22 in[1] = load_input_data8(input + 8);
26 idct4_sse2(in);
27 idct4_sse2(in);
56 __m128i in[8]; local
    [all...]
  /system/bt/binder/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
25 void onServerRegistered(in int status, in int serverIf);
26 void onServerConnectionState(in int status, in int serverIf,
27 in boolean connected, in String address);
28 void onServiceAdded(in int status, in BluetoothGattService service)
    [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 onPhyUpdate(in String address, in int txPhy, in int rxPhy, in int status)
    [all...]
IBluetoothHidDeviceCallback.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 onAppStatusChanged(in BluetoothDevice device, boolean registered);
24 void onConnectionStateChanged(in BluetoothDevice device, in int state);
25 void onGetReport(in BluetoothDevice device, in byte type, in byte id, in int bufferSize);
26 void onSetReport(in BluetoothDevice device, in byte type, in byte id, in byte[] data)
    [all...]
  /external/fec/
sumsq_mmx.c 6 * 8 words; they differ only in their alignment requirements (8 bytes
15 long long sumsq_mmx(signed short *in,int cnt){
19 while(((int)in & 7) != 0 && cnt != 0){
20 sum += (long)in[0] * in[0];
21 in++;
24 sum += sumsq_mmx_assist(in,cnt);
25 in += cnt & ~7;
30 sum += (long)in[0] * in[0]
    [all...]
sumsq_sse2.c 4 * 8 words; they differ only in their alignment requirements (8 bytes
13 long long sumsq_sse2(signed short *in,int cnt){
17 while(((int)in & 15) != 0 && cnt != 0){
18 sum += (long)in[0] * in[0];
19 in++;
22 sum += sumsq_sse2_assist(in,cnt);
23 in += cnt & ~7;
28 sum += (long)in[0] * in[0]
    [all...]
  /external/annotation-tools/annotation-file-utilities/tests/
IntCell.java 6 public IntCell(int in) {
7 this.i = in;
10 public void set(int in) {
11 this.i = in;
  /external/valgrind/drd/tests/
tls_threads.stderr.exp 1 starting join in main
2 finished join in main
  /external/valgrind/helgrind/tests/
tls_threads.stderr.exp 1 starting join in main
2 finished join in main
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
double.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
19 int4 RS_KERNEL doubleKernel(int4 in)
21 return in * 2;
increment.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
19 int4 RS_KERNEL increment(int4 in)
21 return in + 1;
  /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/expat/
run.sh.in 5 case "@host@" in
  /external/jemalloc/include/jemalloc/internal/
private_unnamespace.sh 3 for symbol in `cat $1` ; do
  /external/kmod/testsuite/rootfs-pristine/test-depmod/search-order-simple/etc/depmod.d/
search.conf 1 search updates built-in
  /external/ltp/testscripts/
adp_children.sh 5 for i in 1 2 3 4 5 6 7 8 9 0

Completed in 615 milliseconds

1 2 3 4 5 6 7 8 91011>>