FileDocCategorySizeDatePackage
EventLogTags.javaAPI DocAndroid 5.1 API8042Fri Mar 13 20:21:32 GMT 2015com.android.internal.telephony;

EventLogTags.java

/* This file is auto-generated.  DO NOT MODIFY.
 * Source file: frameworks/opt/telephony/src/java/com/android/internal/telephony/EventLogTags.logtags
 */

package com.android.internal.telephony;;

/**
 * @hide
 */
public class EventLogTags {
  private EventLogTags() { }  // don't instantiate

  /** 50100 pdp_bad_dns_address (dns_address|3) */
  public static final int PDP_BAD_DNS_ADDRESS = 50100;

  /** 50101 pdp_radio_reset_countdown_triggered (out_packet_count|1|1) */
  public static final int PDP_RADIO_RESET_COUNTDOWN_TRIGGERED = 50101;

  /** 50102 pdp_radio_reset (out_packet_count|1|1) */
  public static final int PDP_RADIO_RESET = 50102;

  /** 50103 pdp_context_reset (out_packet_count|1|1) */
  public static final int PDP_CONTEXT_RESET = 50103;

  /** 50104 pdp_reregister_network (out_packet_count|1|1) */
  public static final int PDP_REREGISTER_NETWORK = 50104;

  /** 50105 pdp_setup_fail (cause|1|5), (cid|1|5), (network_type|1|5) */
  public static final int PDP_SETUP_FAIL = 50105;

  /** 50106 call_drop (cause|1|5), (cid|1|5), (network_type|1|5) */
  public static final int CALL_DROP = 50106;

  /** 50107 data_network_registration_fail (op_numeric|1|5), (cid|1|5) */
  public static final int DATA_NETWORK_REGISTRATION_FAIL = 50107;

  /** 50108 data_network_status_on_radio_off (dc_state|3), (enable|1|5) */
  public static final int DATA_NETWORK_STATUS_ON_RADIO_OFF = 50108;

  /** 50109 pdp_network_drop (cid|1|5), (network_type|1|5) */
  public static final int PDP_NETWORK_DROP = 50109;

  /** 50110 cdma_data_setup_failed (cause|1|5), (cid|1|5), (network_type|1|5) */
  public static final int CDMA_DATA_SETUP_FAILED = 50110;

  /** 50111 cdma_data_drop (cid|1|5), (network_type|1|5) */
  public static final int CDMA_DATA_DROP = 50111;

  /** 50112 gsm_rat_switched (cid|1|5), (network_from|1|5), (network_to|1|5) */
  public static final int GSM_RAT_SWITCHED = 50112;

  /** 50113 gsm_data_state_change (oldState|3), (newState|3) */
  public static final int GSM_DATA_STATE_CHANGE = 50113;

  /** 50114 gsm_service_state_change (oldState|1|5), (oldGprsState|1|5), (newState|1|5), (newGprsState|1|5) */
  public static final int GSM_SERVICE_STATE_CHANGE = 50114;

  /** 50115 cdma_data_state_change (oldState|3), (newState|3) */
  public static final int CDMA_DATA_STATE_CHANGE = 50115;

  /** 50116 cdma_service_state_change (oldState|1|5), (oldDataState|1|5), (newState|1|5), (newDataState|1|5) */
  public static final int CDMA_SERVICE_STATE_CHANGE = 50116;

  /** 50117 bad_ip_address (ip_address|3) */
  public static final int BAD_IP_ADDRESS = 50117;

  /** 50118 data_stall_recovery_get_data_call_list (out_packet_count|1|1) */
  public static final int DATA_STALL_RECOVERY_GET_DATA_CALL_LIST = 50118;

  /** 50119 data_stall_recovery_cleanup (out_packet_count|1|1) */
  public static final int DATA_STALL_RECOVERY_CLEANUP = 50119;

  /** 50120 data_stall_recovery_reregister (out_packet_count|1|1) */
  public static final int DATA_STALL_RECOVERY_REREGISTER = 50120;

  /** 50121 data_stall_recovery_radio_restart (out_packet_count|1|1) */
  public static final int DATA_STALL_RECOVERY_RADIO_RESTART = 50121;

  /** 50122 data_stall_recovery_radio_restart_with_prop (out_packet_count|1|1) */
  public static final int DATA_STALL_RECOVERY_RADIO_RESTART_WITH_PROP = 50122;

  /** 50123 gsm_rat_switched_new (cid|1|5), (network_from|1|5), (network_to|1|5) */
  public static final int GSM_RAT_SWITCHED_NEW = 50123;

  /** 50125 exp_det_sms_denied_by_user (app_signature|3) */
  public static final int EXP_DET_SMS_DENIED_BY_USER = 50125;

  /** 50128 exp_det_sms_sent_by_user (app_signature|3) */
  public static final int EXP_DET_SMS_SENT_BY_USER = 50128;

  public static void writePdpBadDnsAddress(String dnsAddress) {
    android.util.EventLog.writeEvent(PDP_BAD_DNS_ADDRESS, dnsAddress);
  }

  public static void writePdpRadioResetCountdownTriggered(int outPacketCount) {
    android.util.EventLog.writeEvent(PDP_RADIO_RESET_COUNTDOWN_TRIGGERED, outPacketCount);
  }

  public static void writePdpRadioReset(int outPacketCount) {
    android.util.EventLog.writeEvent(PDP_RADIO_RESET, outPacketCount);
  }

  public static void writePdpContextReset(int outPacketCount) {
    android.util.EventLog.writeEvent(PDP_CONTEXT_RESET, outPacketCount);
  }

  public static void writePdpReregisterNetwork(int outPacketCount) {
    android.util.EventLog.writeEvent(PDP_REREGISTER_NETWORK, outPacketCount);
  }

  public static void writePdpSetupFail(int cause, int cid, int networkType) {
    android.util.EventLog.writeEvent(PDP_SETUP_FAIL, cause, cid, networkType);
  }

  public static void writeCallDrop(int cause, int cid, int networkType) {
    android.util.EventLog.writeEvent(CALL_DROP, cause, cid, networkType);
  }

  public static void writeDataNetworkRegistrationFail(int opNumeric, int cid) {
    android.util.EventLog.writeEvent(DATA_NETWORK_REGISTRATION_FAIL, opNumeric, cid);
  }

  public static void writeDataNetworkStatusOnRadioOff(String dcState, int enable) {
    android.util.EventLog.writeEvent(DATA_NETWORK_STATUS_ON_RADIO_OFF, dcState, enable);
  }

  public static void writePdpNetworkDrop(int cid, int networkType) {
    android.util.EventLog.writeEvent(PDP_NETWORK_DROP, cid, networkType);
  }

  public static void writeCdmaDataSetupFailed(int cause, int cid, int networkType) {
    android.util.EventLog.writeEvent(CDMA_DATA_SETUP_FAILED, cause, cid, networkType);
  }

  public static void writeCdmaDataDrop(int cid, int networkType) {
    android.util.EventLog.writeEvent(CDMA_DATA_DROP, cid, networkType);
  }

  public static void writeGsmRatSwitched(int cid, int networkFrom, int networkTo) {
    android.util.EventLog.writeEvent(GSM_RAT_SWITCHED, cid, networkFrom, networkTo);
  }

  public static void writeGsmDataStateChange(String oldstate, String newstate) {
    android.util.EventLog.writeEvent(GSM_DATA_STATE_CHANGE, oldstate, newstate);
  }

  public static void writeGsmServiceStateChange(int oldstate, int oldgprsstate, int newstate, int newgprsstate) {
    android.util.EventLog.writeEvent(GSM_SERVICE_STATE_CHANGE, oldstate, oldgprsstate, newstate, newgprsstate);
  }

  public static void writeCdmaDataStateChange(String oldstate, String newstate) {
    android.util.EventLog.writeEvent(CDMA_DATA_STATE_CHANGE, oldstate, newstate);
  }

  public static void writeCdmaServiceStateChange(int oldstate, int olddatastate, int newstate, int newdatastate) {
    android.util.EventLog.writeEvent(CDMA_SERVICE_STATE_CHANGE, oldstate, olddatastate, newstate, newdatastate);
  }

  public static void writeBadIpAddress(String ipAddress) {
    android.util.EventLog.writeEvent(BAD_IP_ADDRESS, ipAddress);
  }

  public static void writeDataStallRecoveryGetDataCallList(int outPacketCount) {
    android.util.EventLog.writeEvent(DATA_STALL_RECOVERY_GET_DATA_CALL_LIST, outPacketCount);
  }

  public static void writeDataStallRecoveryCleanup(int outPacketCount) {
    android.util.EventLog.writeEvent(DATA_STALL_RECOVERY_CLEANUP, outPacketCount);
  }

  public static void writeDataStallRecoveryReregister(int outPacketCount) {
    android.util.EventLog.writeEvent(DATA_STALL_RECOVERY_REREGISTER, outPacketCount);
  }

  public static void writeDataStallRecoveryRadioRestart(int outPacketCount) {
    android.util.EventLog.writeEvent(DATA_STALL_RECOVERY_RADIO_RESTART, outPacketCount);
  }

  public static void writeDataStallRecoveryRadioRestartWithProp(int outPacketCount) {
    android.util.EventLog.writeEvent(DATA_STALL_RECOVERY_RADIO_RESTART_WITH_PROP, outPacketCount);
  }

  public static void writeGsmRatSwitchedNew(int cid, int networkFrom, int networkTo) {
    android.util.EventLog.writeEvent(GSM_RAT_SWITCHED_NEW, cid, networkFrom, networkTo);
  }

  public static void writeExpDetSmsDeniedByUser(String appSignature) {
    android.util.EventLog.writeEvent(EXP_DET_SMS_DENIED_BY_USER, appSignature);
  }

  public static void writeExpDetSmsSentByUser(String appSignature) {
    android.util.EventLog.writeEvent(EXP_DET_SMS_SENT_BY_USER, appSignature);
  }
}