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

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/header/
AllowEvents.java 53 protected String eventType;
66 eventType = m;
70 * Sets the eventType defined in this AllowEventsHeader.
72 * @param eventType - the String defining the method supported
75 * unexpectedly while parsing the Strings defining the eventType supported
77 public void setEventType(String eventType) throws ParseException {
78 if (eventType == null)
81 + "AllowEvents, setEventType(), the eventType parameter is null");
82 this.eventType = eventType;
    [all...]
Event.java 52 protected String eventType;
62 * Sets the eventType to the newly supplied eventType string.
64 * @param eventType - the new string defining the eventType supported
67 * unexpectedly while parsing the eventType value.
69 public void setEventType(String eventType) throws ParseException {
70 if (eventType == null)
71 throw new NullPointerException(" the eventType is null");
72 this.eventType = eventType
    [all...]
  /system/chre/util/nanoapp/
sensor.cc 24 const char *getSensorNameForEventType(uint32_t eventType) {
25 SensorType sensorType = getSensorTypeForSampleEventType(eventType);
  /system/chre/util/include/chre/util/nanoapp/
sensor.h 27 * @param eventType the type of a sensor sample event.
30 const char *getSensorNameForEventType(uint32_t eventType);
  /frameworks/base/media/java/android/media/
MediaSyncEvent.java 51 * @param eventType the synchronization event type.
55 public static MediaSyncEvent createEvent(int eventType)
57 if (!isValidType(eventType)) {
58 throw (new IllegalArgumentException(eventType
61 return new MediaSyncEvent(eventType);
68 private MediaSyncEvent(int eventType) {
69 mType = eventType;
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityEventSource.java 44 * @param eventType The event type.
46 public void sendAccessibilityEvent(int eventType);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerTrace.java 112 * @param eventType One of the EVENTTYPE_XXX constants.
114 public void fireGenerateEvent(int eventType);
119 * @param eventType One of the EVENTTYPE_XXX constants.
123 public void fireGenerateEvent(int eventType, String name, Attributes atts);
128 * @param eventType One of the EVENTTYPE_XXX constants.
133 public void fireGenerateEvent(int eventType, char ch[], int start, int length);
138 * @param eventType One of the EVENTTYPE_XXX constants.
142 public void fireGenerateEvent(int eventType, String name, String data);
148 * @param eventType One of the EVENTTYPE_XXX constants.
151 public void fireGenerateEvent(int eventType, String data)
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEvent.java 26 protected int eventType;
46 eventType = type;
53 return eventType;
  /frameworks/base/services/core/jni/
com_android_server_power_PowerManagerService.h 27 extern void android_server_PowerManagerService_userActivity(nsecs_t eventTime, int32_t eventType);
  /system/chre/util/include/chre/util/
entry_points.h 28 uint16_t eventType,
  /packages/apps/Settings/src/com/android/settings/dashboard/suggestions/
EventStore.java 53 * @param eventType: Type of event (one of {@link #EVENTS}).
55 public void writeEvent(String pkgName, String eventType) {
56 if (!EVENTS.contains(eventType)) {
57 Log.w(TAG, "Reported event type " + eventType + " is not a valid type!");
60 final String lastTimePrefKey = getPrefKey(pkgName, eventType, METRIC_LAST_EVENT_TIME);
61 final String countPrefKey = getPrefKey(pkgName, eventType, METRIC_COUNT);
69 * @param eventType: Type of event (one of {@link #EVENTS}).
73 public long readMetric(String pkgName, String eventType, String metricType) {
74 if (!EVENTS.contains(eventType)) {
75 Log.w(TAG, "Reported event type " + eventType + " is not a valid event!")
    [all...]
  /frameworks/base/core/java/android/net/metrics/
IpReachabilityEvent.java 44 // eventType byte format (MSB to LSB):
49 public final int eventType;
51 public IpReachabilityEvent(int eventType) {
52 this.eventType = eventType;
56 this.eventType = in.readInt();
61 out.writeInt(eventType);
93 int hi = eventType & 0xff00;
94 int lo = eventType & 0x00ff;
IpManagerEvent.java 48 public @interface EventType {}
50 public final @EventType int eventType;
53 public IpManagerEvent(@EventType int eventType, long duration) {
54 this.eventType = eventType;
59 this.eventType = in.readInt();
65 out.writeInt(eventType);
88 Decoder.constants.get(eventType), durationMs)
    [all...]
NetworkEvent.java 61 public @interface EventType {}
64 public final @EventType int eventType;
67 public NetworkEvent(int netId, @EventType int eventType, long durationMs) {
69 this.eventType = eventType;
73 public NetworkEvent(int netId, @EventType int eventType) {
74 this(netId, eventType, 0)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/logging/
EditorEvent.java 23 public int eventType;
28 public static final class EventType {
36 .add("eventType", eventType)
  /system/chre/apps/hello_world/
hello_world.cc 39 uint16_t eventType,
42 "time %" PRIu64, eventType, senderInstanceId, chreGetTime());
  /device/google/contexthub/inc/chre/
nanoapp.h 54 * @param eventType The event type. This might be one of the CHRE_EVENT_*
65 void nanoappHandleEvent(uint32_t senderInstanceId, uint16_t eventType,
  /external/nist-sip/java/javax/sip/header/
AllowEventsHeader.java 9 void setEventType(String eventType) throws ParseException;
  /frameworks/base/core/java/android/hardware/location/
IActivityRecognitionHardware.aidl 51 boolean enableActivityEvent(in String activityType, int eventType, long reportLatencyNs);
56 boolean disableActivityEvent(in String activityType, int eventType);
  /packages/apps/Dialer/java/com/android/voicemail/impl/utils/
XmlUtils.java 33 int eventType = parser.getEventType();
35 if (eventType == XmlPullParser.START_TAG) {
38 } else if (eventType == XmlPullParser.END_TAG) {
44 eventType = parser.next();
45 } while (eventType != XmlPullParser.END_DOCUMENT);
69 int eventType = parser.getEventType();
71 if (eventType == XmlPullParser.START_TAG) {
74 } else if (eventType == XmlPullParser.END_TAG) {
80 eventType = parser.next();
81 } while (eventType != XmlPullParser.END_DOCUMENT)
    [all...]
  /system/chre/chre_api/include/chre_api/chre/
nanoapp.h 55 * @param eventType The event type. This might be one of the CHRE_EVENT_*
66 void nanoappHandleEvent(uint32_t senderInstanceId, uint16_t eventType,
  /system/chre/chre_api/legacy/v1_0/chre/
nanoapp.h 54 * @param eventType The event type. This might be one of the CHRE_EVENT_*
65 void nanoappHandleEvent(uint32_t senderInstanceId, uint16_t eventType,
  /system/chre/platform/linux/
platform_nanoapp.cc 29 uint16_t eventType,
31 mHandleEvent(senderInstanceId, eventType, eventData);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
VisualVoicemailSmsParser.java 66 String eventType = smsBody.substring(prefixEnd + 1, eventTypeEnd);
71 return new WrappedMessageData(eventType, fields);
131 String eventType = smsBody.substring(0, eventTypeEnd);
132 if (!isAllowedAlternativeFormatEvent(eventType)) {
139 return new WrappedMessageData(eventType, fields);
145 private static boolean isAllowedAlternativeFormatEvent(String eventType) {
147 if (event.equals(eventType)) {
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsXmlResourceParser.java 89 * @param eventType
94 protected int advanceToNextEvent(int eventType) throws XmlPullParserException, IOException {
97 if (nextEvent == eventType
111 final int eventType = mInputParser.getEventType();
112 mLogStringBuilder.append(xmlParserEventString(eventType));
113 if (eventType == XmlPullParser.START_TAG
114 || eventType == XmlPullParser.END_TAG
115 || eventType == XmlPullParser.TEXT) {

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011>>