Searched defs:dataType (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdvScanData.java54 * @param dataType
56 public BluetoothAdvScanData(IBluetoothGatt mBluetoothGatt, int dataType) { argument
58 this.mDataType = dataType;
H A DBluetoothHealthAppConfiguration.java40 * @param dataType Data Type of the remote Bluetooth Health device
43 BluetoothHealthAppConfiguration(String name, int dataType) { argument
45 mDataType = dataType;
54 * @param dataType Data Type of the remote Bluetooth Health device
59 BluetoothHealthAppConfiguration(String name, int dataType, int role, int argument
62 mDataType = dataType;
104 * @return dataType
H A DBluetoothHealth.java140 * @param dataType The dataType of the Source role of Health Profile to which
146 public boolean registerSinkAppConfiguration(String name, int dataType, argument
150 if (VDBG) log("registerSinkApplication(" + name + ":" + dataType + ")");
151 return registerAppConfiguration(name, dataType, SINK_ROLE,
163 * @param dataType The dataType of the Source role of Health Profile.
171 public boolean registerAppConfiguration(String name, int dataType, int role, argument
176 if (VDBG) log("registerApplication(" + name + ":" + dataType + ")");
179 new BluetoothHealthAppConfiguration(name, dataType, rol
[all...]
/frameworks/rs/
H A DrsElement.h43 RsDataType dataType; member in struct:android::renderscript::Element::Hal::State
/frameworks/rs/driver/
H A DrsdShader.cpp283 if (f->mHal.state.dataType == RS_TYPE_MATRIX_4X4) {
285 } else if (f->mHal.state.dataType == RS_TYPE_MATRIX_3X3) {
287 } else if (f->mHal.state.dataType == RS_TYPE_MATRIX_2X2) {
310 RsDataType dataType = field->mHal.state.dataType; local
316 if (dataType == RS_TYPE_MATRIX_4X4) {
322 } else if (dataType == RS_TYPE_MATRIX_3X3) {
327 } else if (dataType == RS_TYPE_MATRIX_2X2) {
357 RsDataType dataType = field->mHal.state.dataType; local
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DBatteryStatsService.java231 public void notePhoneDataConnectionState(int dataType, boolean hasData) { argument
234 mStats.notePhoneDataConnectionStateLocked(dataType, hasData);
/frameworks/rs/driver/runtime/
H A Drs_structs.h182 rs_data_type dataType; member in struct:Element::__anon1628::__anon1629
/frameworks/base/core/java/android/content/
H A DIntentFilter.java338 * @param dataType The type to match, i.e. "vnd.android.cursor.dir/person".
344 public static IntentFilter create(String action, String dataType) { argument
346 return new IntentFilter(action, dataType);
386 * @param dataType The type to match, i.e. "vnd.android.cursor.dir/person".
389 public IntentFilter(String action, String dataType) argument
394 addDataType(dataType);
/frameworks/base/core/java/android/os/
H A DBatteryStats.java874 public abstract long getPhoneDataConnectionTime(int dataType, argument
883 public abstract int getPhoneDataConnectionCount(int dataType, int which); argument
/frameworks/base/include/androidfw/
H A DResourceTypes.h281 uint8_t dataType; member in struct:android::Res_value
329 // The data for this item, as interpreted according to dataType.
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2131 public void notePhoneDataConnectionStateLocked(int dataType, boolean hasData) { argument
2134 switch (dataType) {
2185 if (DEBUG) Log.i(TAG, "Phone Data Connection -> " + dataType + " = " + hasData);
2551 @Override public long getPhoneDataConnectionTime(int dataType, argument
2553 return mPhoneDataConnectionsTimer[dataType].getTotalTimeLocked(
2557 @Override public int getPhoneDataConnectionCount(int dataType, int which) { argument
2558 return mPhoneDataConnectionsTimer[dataType].getCountLocked(which);

Completed in 276 milliseconds