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

1 2 3

  /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...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/utils/
SafetyNetLogger.java 20 import android.util.EventLog;
42 EventLog.writeEvent(SNET_NET_EVENT_LOG_TAG, PERMISSIONS_REQUESTED,
48 EventLog.writeEvent(SNET_NET_EVENT_LOG_TAG, PERMISSIONS_TOGGLED,
  /external/autotest/client/site_tests/graphics_GLMark2/
graphics_GLMark2.py 142 from cros.factory.event_log import EventLog
143 EventLog('graphics_GLMark2').Log('glmark2_score', score=score)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsSystemUser.java 23 import android.util.EventLog;
63 EventLog.writeEvent(EventLogTags.SYSUI_RECENTS_CONNECTION,
69 EventLog.writeEvent(EventLogTags.SYSUI_RECENTS_CONNECTION,
Recents.java 38 import android.util.EventLog;
119 EventLog.writeEvent(EventLogTags.SYSUI_RECENTS_CONNECTION,
140 EventLog.writeEvent(EventLogTags.SYSUI_RECENTS_CONNECTION,
728 EventLog.writeEvent(EventLogTags.SYSUI_RECENTS_CONNECTION,
  /cts/tests/tests/util/src/android/util/cts/
EventLogTest.java 20 import android.util.EventLog;
21 import android.util.EventLog.Event;
37 EventLog.writeEvent(ANSWER_TAG, markerData);
38 EventLog.writeEvent(ANSWER_TAG, 12345);
39 EventLog.writeEvent(ANSWER_TAG, 23456L);
40 EventLog.writeEvent(ANSWER_TAG, 42.4242f);
41 EventLog.writeEvent(ANSWER_TAG, "Test");
42 EventLog.writeEvent(ANSWER_TAG, 12345, 23456L, 42.4242f, "Test");
44 List<EventLog.Event> events = getEventsAfterMarker(markerData, ANSWER_TAG);
68 EventLog.writeEvent(ANSWER_TAG, markerData)
    [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,
  /frameworks/base/core/java/android/util/
EventLog.java 45 public class EventLog {
46 /** @hide */ public EventLog() {}
48 private static final String TAG = "EventLog";
  /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);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarView.java 21 import android.util.EventLog;
128 EventLog.writeEvent(EventLogTags.SYSUI_PANELBAR_TOUCH,
  /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...]
  /frameworks/base/services/core/java/com/android/server/
Watchdog.java 37 import android.util.EventLog;
419 EventLog.writeEvent(EventLogTags.WATCHDOG, subject);
BatteryService.java 50 import android.util.EventLog;
390 EventLog.writeEvent(EventLogTags.BATTERY_DISCHARGE, dischargeDuration,
405 EventLog.writeEvent(EventLogTags.BATTERY_STATUS,
412 EventLog.writeEvent(EventLogTags.BATTERY_LEVEL,
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
AppErrors.java 45 import android.util.EventLog;
588 EventLog.writeEvent(EventLogTags.AM_PROCESS_CRASHED_TOO_MUCH,
596 EventLog.writeEvent(EventLogTags.AM_PROC_BAD, app.userId, app.uid,
    [all...]
ActivityStarter.java 112 import android.util.EventLog;
    [all...]
BroadcastQueue.java 49 import android.util.EventLog;
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
AutomaticBrightnessController.java 36 import android.util.EventLog;
577 EventLog.writeEvent(EventLogTags.AUTO_BRIGHTNESS_ADJ,
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 49 import android.util.EventLog;
405 EventLog.writeEvent(EventLogTags.POWER_SCREEN_STATE, 1, 0, 0, 0);
461 EventLog.writeEvent(EventLogTags.POWER_SCREEN_STATE, 0, why, 0, 0);
621 EventLog.writeEvent(EventLogTags.POWER_SCREEN_BROADCAST_SEND, 1);
655 EventLog.writeEvent(EventLogTags.POWER_SCREEN_BROADCAST_STOP, 2, 1);
663 EventLog.writeEvent(EventLogTags.POWER_SCREEN_BROADCAST_DONE, 1,
678 EventLog.writeEvent(EventLogTags.POWER_SCREEN_BROADCAST_STOP, 3, 1);
686 EventLog.writeEvent(EventLogTags.POWER_SCREEN_BROADCAST_DONE, 0,
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 46 import android.util.EventLog;
206 EventLog.writeEvent(EventLogTags.FREE_STORAGE_LEFT,
217 EventLog.writeEvent(EventLogTags.FREE_STORAGE_CHANGED, mFreeMem);
462 EventLog.writeEvent(EventLogTags.LOW_STORAGE, mFreeMem);
  /frameworks/base/services/core/java/com/android/server/wm/
Task.java 37 import android.util.EventLog;
147 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeTask");
163 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
174 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "moveTask");
192 EventLog.writeEvent(EventLogTags.WM_TASK_REMOVED, mTaskId, "removeAppToken: last token");
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminAdd.java 49 import android.util.EventLog;
327 EventLog.writeEvent(EventLogTags.EXP_DET_DEVICE_ADMIN_DECLINED_BY_USER,
337 EventLog.writeEvent(EventLogTags.EXP_DET_DEVICE_ADMIN_UNINSTALLED_BY_USER,
399 EventLog.writeEvent(EventLogTags.EXP_DET_DEVICE_ADMIN_ACTIVATED_BY_USER,
  /frameworks/base/core/java/android/content/
ContentResolver.java 51 import android.util.EventLog;
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java 32 import android.util.EventLog;
339 EventLog.writeEvent(EVENT_DB_CORRUPT, getLabel());
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 40 import android.util.EventLog;
741 EventLog.writeEvent(LOG_BOOT_PROGRESS_PRELOAD_START,
744 EventLog.writeEvent(LOG_BOOT_PROGRESS_PRELOAD_END,
    [all...]

Completed in 1234 milliseconds

1 2 3