1 /* 2 * Copyright (C) 2008 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.internal.telephony; 18 19 /* This class contains the details related to Telephony Event Logging */ 20 public final class TelephonyEventLog { 21 22 /* Event log tags */ 23 public static final int EVENT_LOG_BAD_DNS_ADDRESS = 50100; 24 public static final int EVENT_LOG_RADIO_RESET_COUNTDOWN_TRIGGERED = 50101; 25 public static final int EVENT_LOG_RADIO_RESET = 50102; 26 public static final int EVENT_LOG_PDP_RESET = 50103; 27 public static final int EVENT_LOG_REREGISTER_NETWORK = 50104; 28 public static final int EVENT_LOG_RADIO_PDP_SETUP_FAIL = 50105; 29 public static final int EVENT_LOG_CALL_DROP = 50106; 30 public static final int EVENT_LOG_CGREG_FAIL = 50107; 31 public static final int EVENT_LOG_DATA_STATE_RADIO_OFF = 50108; 32 public static final int EVENT_LOG_PDP_NETWORK_DROP = 50109; 33 public static final int EVENT_LOG_CDMA_DATA_SETUP_FAILED = 50110; 34 public static final int EVENT_LOG_CDMA_DATA_DROP = 50111; 35 } 36