HomeSort by relevance Sort by last modified time
    Searched defs:mEventType (Results 1 - 25 of 39) sorted by null

1 2

  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalEvent.java 26 public int mZoneId, mEventType, mThermalLevel, mZoneTemp;
31 mEventType = type;
ThermalCooling.java 159 int mEventType = mParser.getEventType();
160 while (mEventType != XmlPullParser.END_DOCUMENT && !done) {
161 switch (mEventType) {
193 mEventType = mParser.next();
    [all...]
ThermalService.java 175 int mEventType = mParser.getEventType();
176 while (mEventType != XmlPullParser.END_DOCUMENT && !mDone) {
177 switch (mEventType) {
209 mEventType = mParser.next();
474 statusIntent.putExtra(ThermalManager.EXTRA_EVENT, event.mEventType);
  /frameworks/base/core/java/android/hardware/location/
ActivityRecognitionEvent.java 29 private final int mEventType;
34 mEventType = eventType;
43 return mEventType;
75 parcel.writeInt(mEventType);
84 mEventType,
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionEvent.java 25 private final int mEventType;
30 mEventType = eventType;
39 return mEventType;
49 switch (mEventType) {
68 mEventType,
  /frameworks/base/core/java/android/app/usage/
EventStats.java 31 public int mEventType;
65 mEventType = stats.mEventType;
78 return mEventType;
132 if (mEventType != right.mEventType) {
134 + mEventType + " with EventStats for event #" + right.mEventType);
155 dest.writeInt(mEventType);
167 stats.mEventType = in.readInt()
    [all...]
UsageEvents.java 195 public int mEventType;
259 mEventType = orig.mEventType;
304 return mEventType;
512 p.writeInt(event.mEventType);
515 switch (event.mEventType) {
553 eventOut.mEventType = p.readInt();
564 switch (eventOut.mEventType) {
  /packages/services/Car/car-lib/src/android/car/hardware/property/
CarPropertyEvent.java 31 private final int mEventType;
39 public int getEventType() { return mEventType; }
53 dest.writeInt(mEventType);
72 mEventType = eventType;
77 mEventType = in.readInt();
84 "mEventType=" + mEventType +
  /frameworks/base/core/java/android/bluetooth/le/
ScanResult.java 87 private int mEventType;
111 mEventType = (DATA_COMPLETE << 5) | ET_LEGACY_MASK | ET_CONNECTABLE_MASK;
137 mEventType = eventType;
168 dest.writeInt(mEventType);
185 mEventType = in.readInt();
233 return (mEventType & ET_LEGACY_MASK) != 0;
240 return (mEventType & ET_CONNECTABLE_MASK) != 0;
250 return (mEventType >> 5) & 0x03;
306 mEventType, mPrimaryPhy, mSecondaryPhy,
323 && mEventType == other.mEventTyp
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
Event.java 78 final private int mEventType; // The type of event - one of the constants above
117 mEventType = type;
128 if (EVENT_TYPE_SUGGESTION_PICKED == mEventType) {
258 return new Event(source.mEventType, source.mText, source.mCodePoint, source.mKeyCode,
288 public boolean isGesture() { return EVENT_TYPE_GESTURE == mEventType; }
293 return EVENT_TYPE_SUGGESTION_PICKED == mEventType;
297 return EVENT_TYPE_NOT_HANDLED != mEventType;
304 switch (mEventType) {
317 throw new RuntimeException("Unknown event type: " + mEventType);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothLeAdvertiseFacade.java 561 String mEventType;
565 mEventType = "BleAdvertise";
571 Log.d("bluetooth_le_advertisement onSuccess " + mEventType + " "
575 mEventFacade.postEvent(mEventType + index
599 Log.d("bluetooth_le_advertisement onFailure " + mEventType + " "
604 mEventFacade.postEvent(mEventType + index + "onFailure",
BluetoothLeAdvertisingSetFacade.java 350 String mEventType;
354 mEventType = "AdvertisingSet";
360 Log.d("onAdvertisingSetStarted" + mEventType + " " + index);
371 mEventFacade.postEvent(mEventType + index + "onAdvertisingSetStarted", results);
376 Log.d("onAdvertisingSetStopped" + mEventType + " " + index);
379 mEventFacade.postEvent(mEventType + index + "onAdvertisingSetStopped", results);
424 Log.d("onOwnAddressRead" + mEventType + " " + setIndex);
429 mEventFacade.postEvent(mEventType + setIndex + "onOwnAddressRead", results);
437 Log.d(cb + mEventType + " " + index);
442 mEventFacade.postEvent(mEventType + index + cb, results)
    [all...]
BluetoothLeScanFacade.java 858 String mEventType;
863 mEventType = "BleScan";
882 + mEventType + " " + index + " error
    [all...]
GattClientFacade.java     [all...]
GattServerFacade.java     [all...]
  /frameworks/base/core/java/android/service/autofill/
FillEventHistory.java 141 parcel.writeInt(event.mEventType);
238 @EventIds private final int mEventType;
262 return mEventType;
476 mEventType = Preconditions.checkArgumentInRange(eventType, 0, TYPE_CONTEXT_COMMITTED,
506 + ", type=" + mEventType
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeXmlBlockParser.java 49 private int mEventType = START_DOCUMENT;
202 return mEventType;
306 eventTypeToString(mEventType) + " -> " + eventTypeToString(ev));
318 mEventType = ev;
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
LayoutParserWrapper.java 46 private int mEventType;
108 mEventType = mDelegate.getEventType();
110 if (mEventType == START_TAG) {
155 return mPeeked ? mEventType : mDelegate.getEventType();
178 if (mEventType != START_TAG) {
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
XmlResourceParserImpl.java 60 private int mEventType = START_DOCUMENT;
183 return mEventType;
362 if (mEventType == END_DOCUMENT) {
378 mEventType = ev;
395 switch (mEventType) {
447 // This can only happen if mEventType is
450 "Robolectric-> Uknown XML event type: " + mEventType);
  /frameworks/base/core/java/android/content/res/
XmlBlock.java 153 return mEventType;
202 return mEventType == START_TAG ? nativeGetAttributeCount(mParseState) : -1;
261 mEventType = ev;
470 private int mEventType = START_DOCUMENT;
  /frameworks/base/core/java/android/view/textclassifier/
SelectionEvent.java 124 private @EventType int mEventType;
147 mEventType = eventType;
156 mEventType = in.readInt();
179 dest.writeInt(mEventType);
372 return mEventType;
379 mEventType = eventType;
569 return isTerminal(mEventType);
595 return Objects.hash(mAbsoluteStart, mAbsoluteEnd, mEventType, mEntityType,
613 && mEventType == other.mEventType
    [all...]
  /frameworks/base/core/java/android/view/textclassifier/logging/
SmartSelectionEventTracker.java 123 if (event.mEventType != SelectionEvent.EventType.SELECTION_STARTED && mSessionId == null
130 switch (event.mEventType) {
204 switch (event.mEventType) {
423 private @EventType int mEventType;
433 mEventType = eventType;
563 switch (mEventType) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiP2pManagerFacade.java 67 private final String mEventType;
71 mEventType = "WifiP2p";
78 mEventFacade.postEvent(mEventType + TAG + "OnSuccess", null);
83 Log.d("WifiActionListener " + mEventType);
96 mEventFacade.postEvent(mEventType + TAG + "OnFailure", msg);
102 private final String mEventType;
105 mEventType = "WifiP2p";
123 mEventFacade.postEvent(mEventType + "OnConnectionInfoAvailable", msg);
130 private final String mEventType;
133 mEventType = "WifiP2p"
    [all...]
WifiScannerFacade.java 92 protected String mEventType;
97 this.mEventType = type;
104 Log.d("onSuccess " + mEventType + " " + mIndex);
108 mEventFacade.postEvent(mEventType + mIndex + "onSuccess", mResults.clone());
114 Log.d("onFailure " + mEventType + " " + mIndex);
119 mEventFacade.postEvent(mEventType + mIndex + "onFailure", mResults.clone());
124 Log.d("reportResult " + mEventType + " " + mIndex);
129 mEventFacade.postEvent(mEventType + mIndex + type, mResults.clone());
169 private static final String mEventType = "WifiScannerScan";
180 mWAL = new WifiActionListener(mEventType, mIndex, mScanResults
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityEvent.java 756 private @EventType int mEventType;
790 mEventType = event.mEventType;
    [all...]

Completed in 3695 milliseconds

1 2