Searched defs:dataType (Results 1 - 12 of 12) 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.java107 * @param dataType The dataType of the Source role of Health Profile to which
113 public boolean registerSinkAppConfiguration(String name, int dataType, argument
117 if (DBG) log("registerSinkApplication(" + name + ":" + dataType + ")");
118 return registerAppConfiguration(name, dataType, SINK_ROLE,
130 * @param dataType The dataType of the Source role of Health Profile.
138 public boolean registerAppConfiguration(String name, int dataType, int role, argument
143 if (DBG) log("registerApplication(" + name + ":" + dataType + ")");
146 new BluetoothHealthAppConfiguration(name, dataType, rol
[all...]
/frameworks/compile/libbcc/lib/ScriptCRT/
H A Drs_structs.h169 rs_data_type dataType; member in struct:Element::__anon1249::__anon1250
/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/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/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/jni/
H A Dandroid_server_BluetoothService.cpp1298 jint dataType, jstring role,
1325 "DataType", DBUS_TYPE_UINT16, &dataType,
1361 jint dataType, jstring role,
1388 "DataType", DBUS_TYPE_UINT16, &dataType,
1297 registerHealthApplicationNative(JNIEnv *env, jobject object, jint dataType, jstring role, jstring name, jstring channelType) argument
1360 registerSinkHealthApplicationNative(JNIEnv *env, jobject object, jint dataType, jstring role, jstring name) argument
/frameworks/base/core/java/android/os/
H A DBatteryStats.java841 public abstract long getPhoneDataConnectionTime(int dataType, argument
850 public abstract int getPhoneDataConnectionCount(int dataType, int which); argument
/frameworks/base/core/java/android/server/
H A DBluetoothService.java2912 native String registerHealthApplicationNative(int dataType, String role, String name, argument
2914 native String registerHealthApplicationNative(int dataType, String role, String name); 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.java1942 public void notePhoneDataConnectionStateLocked(int dataType, boolean hasData) { argument
1945 switch (dataType) {
1993 if (DEBUG) Log.i(TAG, "Phone Data Connection -> " + dataType + " = " + hasData);
2305 @Override public int getPhoneSignalStrengthCount(int dataType, int which) { argument
2306 return mPhoneDataConnectionsTimer[dataType].getCountLocked(which);
2309 @Override public long getPhoneDataConnectionTime(int dataType, argument
2311 return mPhoneDataConnectionsTimer[dataType].getTotalTimeLocked(
2315 @Override public int getPhoneDataConnectionCount(int dataType, int which) { argument
2316 return mPhoneDataConnectionsTimer[dataType].getCountLocked(which);

Completed in 3034 milliseconds