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

1 2 3 4 5

  /frameworks/native/services/surfaceflinger/EventLog/
EventLog.h 30 class EventLog : public Singleton<EventLog> {
37 EventLog();
72 friend class Singleton<EventLog>;
73 EventLog(const EventLog&);
74 EventLog& operator =(const EventLog&);
EventLog.cpp 22 #include "EventLog.h"
28 ANDROID_SINGLETON_STATIC_INSTANCE(EventLog)
31 EventLog::EventLog() {
34 void EventLog::doLogFrameDurations(const String8& window,
36 EventLog::TagBuffer buffer(LOGTAG_SF_FRAME_DUR);
46 void EventLog::logFrameDurations(const String8& window,
48 EventLog::getInstance().doLogFrameDurations(window, durations,
54 EventLog::TagBuffer::TagBuffer(int32_t tag)
58 void EventLog::TagBuffer::log()
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/
EventLog.java 11 * A simple interface to Android's EventLog to be used by native code.
14 public class EventLog {
18 android.util.EventLog.writeEvent(tag, value);
  /libcore/luni/src/test/java/libcore/java/util/beans/
PropertyChangeSupportTest.java 37 EventLog listener = new EventLog();
48 EventLog listener = new EventLog();
64 EventLog all = new EventLog();
67 EventLog proxiedA = new EventLog();
70 EventLog addA = new EventLog();
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
EventLogTest.java 27 import android.util.EventLog;
28 import android.util.EventLog.Event;
48 EventLog.writeEvent(ANSWER_TAG, markerData);
49 EventLog.writeEvent(ANSWER_TAG, 12345);
50 EventLog.writeEvent(ANSWER_TAG, 23456L);
51 EventLog.writeEvent(ANSWER_TAG, 42.4242f);
52 EventLog.writeEvent(ANSWER_TAG, "Test");
53 EventLog.writeEvent(ANSWER_TAG, 12345, 23456L, 42.4242f, "Test");
55 List<EventLog.Event> events = getEventsAfterMarker(markerData, ANSWER_TAG);
81 EventLog.writeEvent(ANSWER_TAG, markerData)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
TpmMeasurementLib.h 23 @param[in] EventLog Measurement event log.
38 IN VOID *EventLog,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/
TpmMeasurementLibNull.c 20 @param[in] EventLog Measurement event log.
35 IN VOID *EventLog,
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
SecurityEventTest.java 8 import android.util.EventLog;
43 // Write an event to the EventLog.
45 EventLog.writeEvent(TAG_ADB_SHELL_CMD, DATA + "_" + i);
47 List<EventLog.Event> events = new ArrayList<>();
49 EventLog.readEvents(new int[]{TAG_ADB_SHELL_CMD}, events);
  /frameworks/base/core/java/com/android/internal/view/menu/
ContextMenuBuilder.java 22 import android.util.EventLog;
85 EventLog.writeEvent(50001, 1);
104 EventLog.writeEvent(50001, 1);
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeTpmMeasurementLib/
DxeTpmMeasurementLib.c 36 @param[in] EventLog Measurement event log.
50 IN VOID *EventLog,
80 CopyMem (&TcgEvent->Event[0], EventLog, LogLen);
102 @param[in] EventLog Measurement event log.
116 IN VOID *EventLog,
144 CopyMem (&Tcg2Event->Event[0], EventLog, LogLen);
163 @param[in] EventLog Measurement event log.
178 IN VOID *EventLog,
192 EventLog,
204 EventLog,
    [all...]
  /packages/experimental/NotificationLog/src/com/android/notificationlog/
NotificationLogActivity.java 13 import android.util.EventLog;
38 private ArrayList<EventLog.Event> mNotificationEvents;
45 mNotificationEvents = new ArrayList<EventLog.Event>();
47 int[] tags = new int[] { EventLog.getTagCode("notification_enqueue") };
49 EventLog.readEvents(tags, mNotificationEvents);
83 private final void bindView(View view, EventLog.Event evt) {
90 // EventLog.writeEvent(EventLogTags.NOTIFICATION_ENQUEUE, pkg, id, tag,
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/utils/
SafetyNetLogger.java 20 import android.util.EventLog;
44 EventLog.writeEvent(SNET_NET_EVENT_LOG_TAG, PERMISSIONS_REQUESTED,
50 EventLog.writeEvent(SNET_NET_EVENT_LOG_TAG, PERMISSIONS_TOGGLED,
  /frameworks/base/services/robotests/src/com/android/server/testing/shadows/
ShadowEventLog.java 19 import android.util.EventLog;
28 @Implements(EventLog.class)
  /frameworks/base/core/java/android/metrics/
MetricsReader.java 19 import android.util.EventLog;
169 Event(EventLog.Event nativeEvent) {
208 ArrayList<EventLog.Event> nativeEvents = new ArrayList<>();
210 EventLog.readEventsOnWrapping(tags, horizonNs, nativeEvents);
211 for (EventLog.Event nativeEvent : nativeEvents) {
  /frameworks/base/services/backup/java/com/android/server/backup/internal/
PerformInitializeTask.java 27 import android.util.EventLog;
128 EventLog.writeEvent(EventLogTags.BACKUP_START, transportDirName);
142 EventLog.writeEvent(EventLogTags.BACKUP_INITIALIZE);
145 EventLog.writeEvent(EventLogTags.BACKUP_SUCCESS, 0, millis);
152 EventLog.writeEvent(EventLogTags.BACKUP_TRANSPORT_FAILURE, "(initialize)");
  /frameworks/base/tests/DexLoggerIntegrationTests/src/com/android/server/pm/dex/
DexLoggerIntegrationTests.java 24 import android.util.EventLog;
113 List<EventLog.Event> events = new ArrayList<>();
116 EventLog.readEvents(tagList, events);
129 EventLog.readEvents(tagList, events);
131 for (EventLog.Event event : events) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsSystemUser.java 23 import android.util.EventLog;
65 EventLog.writeEvent(EventLogTags.SYSUI_RECENTS_CONNECTION,
71 EventLog.writeEvent(EventLogTags.SYSUI_RECENTS_CONNECTION,
  /frameworks/base/core/java/com/android/internal/util/
LatencyTracker.java 25 import android.util.EventLog;
161 EventLog.writeEvent(EventLogTags.SYSUI_LATENCY, action, duration);
  /frameworks/base/services/backup/java/com/android/server/backup/restore/
PerformUnifiedRestoreTask.java 52 import android.util.EventLog;
441 EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE,
482 EventLog.writeEvent(EventLogTags.RESTORE_TRANSPORT_FAILURE);
491 EventLog.writeEvent(EventLogTags.RESTORE_SUCCESS, mCount, millis);
504 EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, pkgName,
522 EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, pkgName,
548 EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE,
595 EventLog.writeEvent(EventLogTags.RESTORE_TRANSPORT_FAILURE);
620 EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName,
633 EventLog.writeEvent(EventLogTags.RESTORE_AGENT_FAILURE, packageName
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BinderInternal.java 23 import android.util.EventLog;
111 EventLog.writeEvent(2741, reason);
  /frameworks/base/services/core/java/com/android/server/pm/dex/
DexLogger.java 25 import android.util.EventLog;
121 EventLog.writeEvent(SNET_TAG, DCL_SUBTAG, uid, message);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarUpgradeReceiver.java 26 import android.util.EventLog;
  /packages/providers/TvProvider/src/com/android/providers/tv/
TvProviderUpgradeReceiver.java 26 import android.util.EventLog;
  /external/autotest/client/site_tests/graphics_GLMark2/
graphics_GLMark2.py 138 from cros.factory.event_log import EventLog
139 EventLog('graphics_GLMark2').Log('glmark2_score', score=score)
  /frameworks/base/services/core/java/com/android/server/updates/
ConfigUpdateInstallReceiver.java 26 import android.util.EventLog;
77 EventLog.writeEvent(EventLogTags.CONFIG_INSTALL_FAILED,
93 EventLog.writeEvent(EventLogTags.CONFIG_INSTALL_FAILED, errMsg);

Completed in 797 milliseconds

1 2 3 4 5