HomeSort by relevance Sort by last modified time
    Searched refs:eventType (Results 1 - 25 of 440) 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...]
  /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);
  /frameworks/base/core/java/android/net/metrics/
IpReachabilityEvent.java 47 // eventType byte format (MSB to LSB):
52 public final int eventType;
55 public IpReachabilityEvent(String ifName, int eventType) {
57 this.eventType = eventType;
62 this.eventType = in.readInt();
68 out.writeInt(eventType);
110 int hi = eventType & 0xff00;
111 int lo = eventType & 0x00ff;
NetworkEvent.java 55 public @interface EventType {}
58 public final @EventType int eventType;
62 public NetworkEvent(int netId, @EventType int eventType, long durationMs) {
64 this.eventType = eventType;
69 public NetworkEvent(int netId, @EventType int eventType) {
70 this(netId, eventType, 0)
    [all...]
IpManagerEvent.java 45 public @interface EventType {}
48 public final @EventType int eventType;
52 public IpManagerEvent(String ifName, @EventType int eventType, long duration) {
54 this.eventType = eventType;
60 this.eventType = in.readInt();
67 out.writeInt(eventType);
87 public static void logEvent(int eventType, String ifName, long durationMs)
    [all...]
  /system/netd/server/binder/android/net/metrics/
IDnsEventListener.aidl 29 void onDnsEvent(int netId, int eventType, int returnCode, int latencyMs);
  /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;
EventHeader.java 12 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);
ActivityRecognitionEvent.java 32 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) {
34 mEventType = eventType;
55 int eventType = source.readInt();
58 return new ActivityRecognitionEvent(activity, eventType, timestampNs);
82 "Activity='%s', EventType=%s, TimestampNs=%s",
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/utils/
XmlUtils.java 35 int eventType = parser.getEventType();
37 if (eventType == XmlPullParser.START_TAG) {
40 } else if (eventType == XmlPullParser.END_TAG) {
47 eventType = parser.next();
48 } while (eventType != XmlPullParser.END_DOCUMENT);
69 int eventType = parser.getEventType();
71 if (eventType == XmlPullParser.START_TAG) {
74 } else if (eventType == XmlPullParser.END_TAG) {
81 eventType = parser.next();
82 } while (eventType != XmlPullParser.END_DOCUMENT)
    [all...]
  /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) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestSummaryXml.java 104 int eventType = parser.getEventType();
105 while (eventType != XmlPullParser.END_DOCUMENT) {
106 if (eventType == XmlPullParser.START_TAG && parser.getName().equals(
110 } else if (eventType == XmlPullParser.START_TAG && parser.getName().equals(
113 } else if (eventType == XmlPullParser.START_TAG && parser.getName().equals(
122 eventType = parser.next();
  /external/replicaisland/src/com/replica/replicaisland/
EventReporter.java 16 public String eventType;
55 public void addEvent(int eventType, float x, float y, float time, String level, int version, long session) {
63 switch (eventType) {
65 event.eventType = "death";
68 event.eventType = "beatLevel";
71 event.eventType = "beatGame";
87 + "event=" + event.eventType
106 DebugLog.d("Report Event", event.eventType + " " + response + ":" + connection.getURL().toString());
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionEvent.java 27 public ActivityRecognitionEvent(String activity, int eventType, long timestampNs) {
29 mEventType = eventType;
64 "Activity='%s', EventType=%s(%s), TimestampNs=%s",
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
HbpcdLookupDatabaseHelper.java 165 int eventType = parser.getEventType();
168 while (eventType != XmlPullParser.END_DOCUMENT) {
169 if (eventType == XmlPullParser.START_TAG
175 eventType = parser.getEventType();
194 int eventType = parser.getEventType();
196 while (!(eventType == XmlPullParser.END_TAG
220 eventType = parser.getEventType();
227 int eventType = parser.getEventType();
231 while (!(eventType == XmlPullParser.END_TAG && tagName.equalsIgnoreCase("row"))) {
232 if (eventType == XmlPullParser.START_TAG)
    [all...]
  /external/xmlrpcpp/src/
XmlRpcSource.h 38 virtual unsigned handleEvent(unsigned eventType) = 0;
  /frameworks/av/media/libmedia/
IDrmClient.cpp 43 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj)
47 data.writeInt32((int)eventType);
66 int eventType = data.readInt32();
73 notify((DrmPlugin::EventType)eventType, extra, &obj);

Completed in 2793 milliseconds

1 2 3 4 5 6 7 8 91011>>