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

/frameworks/base/core/java/android/bluetooth/
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.java142 * @param dataType The dataType of the Source role of Health Profile to which
148 public boolean registerSinkAppConfiguration(String name, int dataType, argument
152 if (VDBG) log("registerSinkApplication(" + name + ":" + dataType + ")");
153 return registerAppConfiguration(name, dataType, SINK_ROLE,
165 * @param dataType The dataType of the Source role of Health Profile.
173 public boolean registerAppConfiguration(String name, int dataType, int role, argument
178 if (VDBG) log("registerApplication(" + name + ":" + dataType + ")");
181 new BluetoothHealthAppConfiguration(name, dataType, rol
[all...]
/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/rs/
H A DrsElement.h43 RsDataType dataType; member in struct:android::renderscript::Element::Hal::State
/frameworks/support/renderscript/v8/rs_support/
H A DrsElement.h43 RsDataType dataType; member in struct:android::renderscript::Element::Hal::State
/frameworks/base/services/java/com/android/server/am/
H A DBatteryStatsService.java215 public void notePhoneDataConnectionState(int dataType, boolean hasData) { argument
218 mStats.notePhoneDataConnectionStateLocked(dataType, hasData);
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_structs.h170 rs_data_type dataType; member in struct:Element::__anon1213::__anon1214
/frameworks/base/core/java/android/content/
H A DIntentFilter.java321 * @param dataType The type to match, i.e. "vnd.android.cursor.dir/person".
327 public static IntentFilter create(String action, String dataType) { argument
329 return new IntentFilter(action, dataType);
369 * @param dataType The type to match, i.e. "vnd.android.cursor.dir/person".
372 public IntentFilter(String action, String dataType) argument
377 addDataType(dataType);
/frameworks/base/core/java/android/os/
H A DBatteryStats.java843 public abstract long getPhoneDataConnectionTime(int dataType, argument
852 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.java1972 public void notePhoneDataConnectionStateLocked(int dataType, boolean hasData) { argument
1975 switch (dataType) {
2023 if (DEBUG) Log.i(TAG, "Phone Data Connection -> " + dataType + " = " + hasData);
2339 @Override public long getPhoneDataConnectionTime(int dataType, argument
2341 return mPhoneDataConnectionsTimer[dataType].getTotalTimeLocked(
2345 @Override public int getPhoneDataConnectionCount(int dataType, int which) { argument
2346 return mPhoneDataConnectionsTimer[dataType].getCountLocked(which);

Completed in 194 milliseconds