Home
last modified time | relevance | path

Searched refs:log (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DMain.java59 Log log = new Log(); in main() local
64 if (!processArgs(log, args, osJarPath, osDestJar)) { in main()
65 log.error("Usage: layoutlib_create [-v] output.jar input.jar ..."); in main()
66 log.error("Usage: layoutlib_create [-v] [--list-deps|--missing-deps] input.jar ..."); in main()
71 System.exit(listDeps(osJarPath, log)); in main()
74 System.exit(createLayoutLib(osDestJar[0], osJarPath, log)); in main()
81 private static int createLayoutLib(String osDestJar, ArrayList<String> osJarPath, Log log) { in createLayoutLib() argument
82 log.info("Output: %1$s", osDestJar); in createLayoutLib()
84 log.info("Input : %1$s", path); in createLayoutLib()
90 AsmGenerator agen = new AsmGenerator(log, osDestJar, info); in createLayoutLib()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcSwitchStateMachine.java64 if (DBG) log("DcSwitchState constructor E"); in DcSwitchStateMachine()
75 if (DBG) log("DcSwitchState constructor X"); in DcSwitchStateMachine()
89 if (DBG) log("IdleState: enter"); in enter()
105 apnRequest.log("DcSwitchStateMachine.IdleState: REQ_CONNECT"); in processMessage()
106 if (DBG) log("IdleState: REQ_CONNECT, apnRequest=" + apnRequest); in processMessage()
113 if (DBG) log("AttachingState: REQ_DISCONNECT_ALL" ); in processMessage()
125 log("AttachingState: EVENT_DATA_ATTACHED"); in processMessage()
133 log("IdleState: Receive invalid event EVENT_CONNECTED!"); in processMessage()
140 log("IdleState: nothandled msg.what=0x" + in processMessage()
180 log("EmergencyState: deferMessage msg.what=0x" + Integer.toHexString(msg.what)); in processMessage()
[all …]
DDcTracker.java154 if (DBG) log("GsmDCT.constructor"); in DcTracker()
213 if (DBG) log("DcTracker.dispose"); in dispose()
256 public void incApnRefCount(String name, LocalLog log) { in incApnRefCount() argument
258 log.log("DcTracker.incApnRefCount on " + name + " found " + apnContext); in incApnRefCount()
260 apnContext.incRefCount(log); in incApnRefCount()
265 public void decApnRefCount(String name, LocalLog log) { in decApnRefCount() argument
267 log.log("DcTracker.decApnRefCount on " + name + " found " + apnContext); in decApnRefCount()
269 apnContext.decRefCount(log); in decApnRefCount()
385 log("Default data call activation not possible in iwlan."); in isDataPossible()
390 log(String.format("isDataPossible(%s): possible=%b isDataAllowed=%b " + in isDataPossible()
[all …]
DApnContext.java120 log("setDataConnectionAc: old dcac=" + mDcAc + " new dcac=" + dcac in setDataConnectionAc()
143 if (DBG) log("getApnSetting: apnSetting=" + mApnSetting); in getApnSetting()
148 if (DBG) log("setApnSetting: apnSetting=" + apnSetting); in setApnSetting()
202 log("setState: " + s + ", previous state:" + mState); in setState()
226 log("set reason as " + reason + ",current state " + mState); in setReason()
255 log("set enabled as " + enabled + ", current state is " + mDataEnabled.get()); in setEnabled()
266 log("set mDependencyMet as " + met + " current state is " + mDependencyMet.get()); in setDependencyMet()
291 l.log(str); in requestLog()
296 public void incRefCount(LocalLog log) { in incRefCount() argument
304 if (mLocalLogs.contains(log)) { in incRefCount()
[all …]
DDcAsyncChannel.java125 if (DBG) log("reqIsInactive"); in reqIsInactive()
135 if (DBG) log("rspIsInactive=" + retVal); in rspIsInactive()
150 log("rspIsInactive error response=" + response); in isInactiveSync()
165 if (DBG) log("reqCid"); in reqCid()
176 if (DBG) log("rspCid=" + retVal); in rspCid()
190 log("rspCid error response=" + response); in getCidSync()
205 if (DBG) log("reqApnSetting"); in reqApnSetting()
216 if (DBG) log("rspApnSetting=" + retVal); in rspApnSetting()
232 log("getApnSetting error response=" + response); in getApnSettingSync()
247 if (DBG) log("reqLinkProperties"); in reqLinkProperties()
[all …]
DDcController.java98 log("E ctor"); in DcController()
103 log("X ctor"); in DcController()
126 log("dispose: call quiteNow()"); in dispose()
142 log("addActiveDcByCid dc.mCid < 0 dc=" + dc); in addActiveDcByCid()
150 log("removeActiveDcByCid removedDc=null dc=" + dc); in removeActiveDcByCid()
191 log("DccDefaultState: msg.what=EVENT_RIL_CONNECTED mRilVersion=" + in processMessage()
195 log("DccDefaultState: Unexpected exception on EVENT_RIL_CONNECTED"); in processMessage()
204 log("DccDefaultState: EVENT_DATA_STATE_CHANGED:" + in processMessage()
222 log("onDataStateChanged: mDcListAll=" + mDcListAll); in onDataStateChanged()
237 if (DBG) log("onDataStateChanged: add to retry dc=" + dc); in onDataStateChanged()
[all …]
DDcTrackerBase.java329 if (DBG) log("onReceive: action=" + action);
341 if (DBG) log("Reconnect alarm. Previous state was " + mState);
344 if (DBG) log("Restart trySetup alarm");
354 if (DBG) log("NETWORK_STATE_CHANGED_ACTION: mIsWifiConnected=" + mIsWifiConnected);
364 if (DBG) log("WIFI_STATE_CHANGED_ACTION: enabled=" + enabled
400 if (DBG) log("SubscriptionListener.onSubscriptionInfoChanged");
514 log("onActionIntentReconnectAlarm: currSubId = " + currSubId + " phoneSubId=" + phoneSubId); in onActionIntentReconnectAlarm()
519 log("receive ReconnectAlarm but subId incorrect, ignore"); in onActionIntentReconnectAlarm()
526 log("onActionIntentReconnectAlarm: mState=" + mState + " reason=" + reason + in onActionIntentReconnectAlarm()
535 log("onActionIntentReconnectAlarm: apnContext state=" + apnContextState); in onActionIntentReconnectAlarm()
[all …]
DDataConnection.java273 if (DBG) dc.log("Made " + dc.getName()); in makeDataConnection()
278 log("dispose: call quiteNow()"); in dispose()
363 if (DBG) log("updateLinkProperty failed : " + result.setupResult); in updateLinkProperty()
376 log("updateLinkProperty old LP=" + result.oldLp); in updateLinkProperty()
377 log("updateLinkProperty new LP=" + result.newLp); in updateLinkProperty()
399 if (DBG) log("MTU set by call response to: " + lp.getMtu()); in checkSetMtu()
405 if (DBG) log("MTU set by APN to: " + apn.mtu); in checkSetMtu()
413 if (DBG) log("MTU set by config resource to: " + mtu); in checkSetMtu()
424 if (DBG) log("DataConnection constructor E"); in DataConnection()
452 if (DBG) log("DataConnection constructor X"); in DataConnection()
[all …]
DDcRetryAlarmController.java54 log("onReceive: ignore empty action='" + action + "'");
67 log("onReceive: action=" + action
73 if (DBG) log("onReceive: unknown action=" + action);
87 log("DcRetryAlarmController: register for intent action=" + mActionRetry); in DcRetryAlarmController()
96 if (DBG) log("dispose"); in dispose()
118 if (DBG) log("getSuggestedRetryTime: suggestedRetryTime is MAX_INT, retry NOT needed"); in getSuggestedRetryTime()
121 if (DBG) log("getSuggestedRetryTime: suggestedRetryTime is >= 0 use it"); in getSuggestedRetryTime()
127 if (DBG) log("getSuggestedRetryTime: retry is needed"); in getSuggestedRetryTime()
129 if (DBG) log("getSuggestedRetryTime: retry is NOT needed"); in getSuggestedRetryTime()
134 log("getSuggestedRetryTime: " + retryDelay + " response=" + response + " dc=" + dc); in getSuggestedRetryTime()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipConnectionBase.java59 if (DBG) log("SipConnectionBase: ctor dialString=" + dialString); in SipConnectionBase()
66 if (DBG) log("setState: state=" + state); in setState()
89 if (VDBG) log("getCreateTime: ret=" + mCreateTime); in getCreateTime()
95 if (VDBG) log("getConnectTime: ret=" + mConnectTime); in getConnectTime()
101 if (VDBG) log("getDisconnectTime: ret=" + mDisconnectTime); in getDisconnectTime()
115 if (VDBG) log("getDurationMillis: ret=" + dur); in getDurationMillis()
128 if (VDBG) log("getHoldDurationMillis: ret=" + dur); in getHoldDurationMillis()
134 if (VDBG) log("getDisconnectCause: ret=" + mCause); in getDisconnectCause()
139 if (DBG) log("setDisconnectCause: prev=" + mCause + " new=" + cause); in setDisconnectCause()
150 if (VDBG) log("getPostDialState: ret=" + mPostDialState); in getPostDialState()
[all …]
DSipPhone.java70 if (DBG) log("new SipPhone: " + profile.getUriString()); in SipPhone()
100 if (DBG) log("takeIncomingCall: ret=null, not a SipAudioCall"); in takeIncomingCall()
104 if (DBG) log("takeIncomingCall: ret=null, ringingCall not alive"); in takeIncomingCall()
113 log("takeIncomingCall: ret=null," + " foreground and background both alive"); in takeIncomingCall()
120 if (DBG) log("takeIncomingCall: taking call from: " in takeIncomingCall()
129 if (DBG) log(" takeIncomingCall: call cancelled !!"); in takeIncomingCall()
139 if (DBG) log(" takeIncomingCall: exception e=" + e); in takeIncomingCall()
142 if (DBG) log("takeIncomingCall: NOT taking !!"); in takeIncomingCall()
152 if (DBG) log("acceptCall: accepting"); in acceptCall()
158 log("acceptCall:" + in acceptCall()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRetryManager.java117 if (VDBG) log("constructor"); in RetryManager()
147 if (VDBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime); in configure()
183 if (VDBG) log("configure: '" + configStr + "'"); in configure()
189 if (VDBG) log("configure: not empty"); in configure()
197 if (VDBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'"); in configure()
201 if (VDBG) log("configure: splitStr[0]='" + splitStr[0] + "'"); in configure()
204 if (VDBG) log("configure: splitStr[1]='" + splitStr[1] + "'"); in configure()
237 if (VDBG) log("configure: splitStr[1]='" + splitStr[1] + "'"); in configure()
249 if (VDBG) log("configure: setting mMaxRetryCount=" + mMaxRetryCount); in configure()
252 if (VDBG) log("configure: true"); in configure()
[all …]
DCallTracker.java99 log("getHoConnection - compare number: hoConn= " + hoConn.toString()); in getHoConnection()
101 log("getHoConnection: Handover connection match found = " + hoConn.toString()); in getHoConnection()
106 log("getHoConnection: compare state hoConn= " + hoConn.toString()); in getHoConnection()
108 log("getHoConnection: Handover connection match found = " + hoConn.toString()); in getHoConnection()
124 log("notifySrvccState: mHandoverConnections= " + mHandoverConnections.toString()); in notifySrvccState()
152 if (DBG_POLL) log("checkNoOperationsPending: pendingOperations=" + in checkNoOperationsPending()
181 log("checkForTestEmergencyNumber: dialString=" + dialString + in checkForTestEmergencyNumber()
186 log("checkForTestEmergencyNumber: values.length=" + values.length); in checkForTestEmergencyNumber()
191 log("checkForTestEmergencyNumber: remap " + in checkForTestEmergencyNumber()
206 log("convertNumberIfNecessary Roaming" in convertNumberIfNecessary()
[all …]
DTelephonyTester.java63 if (DBG) log("sIntentReceiver.onReceive: action=" + action);
65 log("simulate detaching");
68 log("simulate attaching");
71 log("inject simulated conference event package");
74 if (DBG) log("onReceive: unknown action=" + action);
86 log("register for intent action=" + mPhone.getActionDetached()); in TelephonyTester()
89 log("register for intent action=" + mPhone.getActionAttached()); in TelephonyTester()
92 log("register for intent action=" + ACTION_TEST_CONFERENCE_EVENT_PACKAGE); in TelephonyTester()
106 private static void log(String s) { in log() method in TelephonyTester
139 log("Test conference event package file not found: " + packageFile.getAbsolutePath()); in handleTestConferenceEventPackage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DSIMRecords.java212 if (DBG) log("SIMRecords X ctor this=" + this); in SIMRecords()
217 if (DBG) log("Disposing SIMRecords this=" + this); in dispose()
229 if(DBG) log("finalized"); in finalize()
237 log("setting0 mMncLength" + mMncLength); in resetRecords()
250 log("SIMRecords: onRadioOffOrNotAvailable set 'gsm.sim.operator.numeric' to operator=null"); in resetRecords()
251 log("update icc_operator_numeric=" + null); in resetRecords()
334 if(DBG) log("Set MSISDN: " + mNewMsisdnTag + " " + /*mNewMsisdn*/ "xxxxxxx"); in setMsisdnNumber()
486 if(DBG) log(" VoiceMessageCount from SIM MWIS = " + countVoiceMessages); in getVoiceMessageCount()
498 if(DBG) log(" VoiceMessageCount from SIM CPHS = " + countVoiceMessages); in getVoiceMessageCount()
532 log("setVoiceCallForwardingFlag: enable=" + enable in setVoiceCallForwardingFlag()
[all …]
DRuimRecords.java117 if (DBG) log("RuimRecords X ctor this=" + this); in RuimRecords()
122 if (DBG) log("Disposing RuimRecords " + this); in dispose()
132 if(DBG) log("RuimRecords finalized"); in finalize()
137 log("setting0 mMncLength" + mMncLength); in resetRecords()
243 if (DBG) log("EF_PL=" + IccUtils.bytesToHexString(mEFpl)); in onRecordLoaded()
271 if (DBG) log("EF_LI=" + IccUtils.bytesToHexString(mEFli)); in onRecordLoaded()
285 if (DBG) log("CSIM_SPN=" + in onRecordLoaded()
327 if (DBG) log("Some corruption in SPN decoding = " + spn); in onRecordLoaded()
328 if (DBG) log("Using ENCODING_GSM_7BIT_ALPHABET scheme..."); in onRecordLoaded()
337 log("SPN encoding not supported"); in onRecordLoaded()
[all …]
DIsimUiccRecords.java92 if (DBG) log("IsimUiccRecords X ctor this=" + this); in IsimUiccRecords()
97 log("Disposing " + this); in dispose()
135 log("EVENT_AKA_AUTHENTICATE_DONE"); in handleMessage()
137 log("Exception ISIM AKA: " + ar.exception); in handleMessage()
141 log("ISIM AKA: auth_rsp = " + auth_rsp); in handleMessage()
143 log("Failed to parse ISIM AKA contents: " + e); in handleMessage()
183 if (DBG) log("fetchIsimRecords " + mRecordsToLoad + " requested: " + mRecordsRequested); in fetchIsimRecords()
207 if (DUMP_RECORDS) log("EF_IMPI=" + mIsimImpi); in onRecordLoaded()
217 if (DBG) log("EF_IMPU record count: " + impuList.size()); in onRecordLoaded()
222 if (DUMP_RECORDS) log("EF_IMPU[" + i + "]=" + impu); in onRecordLoaded()
[all …]
/frameworks/base/tests/CoreTests/android/core/
DTestWebServer.java106 public void initServer(boolean log) throws Exception { in initServer() argument
107 initServer(DEFAULT_PORT, DEFAULT_TIMEOUT, log); in initServer()
115 public void initServer(int port, boolean log) throws Exception { in initServer() argument
116 initServer(port, DEFAULT_TIMEOUT, log); in initServer()
126 public void initServer(int port, int timeout, boolean log) throws Exception { in initServer() argument
129 mLog = log; in initServer()
143 protected void log(String s) { in log() method in TestWebServer
201 log("Server will redirect output to "+redirect+" code "+code); in setRedirect()
210 log("Closing AcceptThread"+acceptT); in close()
236 log("IOException in AcceptThread.init()"); in init()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java90 if (DBG) log("onReceive : incoming call intent");
100 if (DBG) log("onReceive : USSD");
210 if (DBG) log("getImsService"); in getImsService()
237 if (DBG) log("dispose"); in dispose()
249 log("ImsPhoneCallTracker finalized"); in finalize()
294 if (DBG) log("dial clirMode=" + clirMode); in dial()
385 log("handleEcmTimer, unsupported action " + action); in handleEcmTimer()
437 if (DBG) log("acceptCall"); in acceptCall()
451 if (DBG) log("acceptCall: incoming..."); in acceptCall()
471 if (DBG) log("rejectCall"); in rejectCall()
[all …]
/frameworks/base/libs/hwui/
DCaches.cpp176 void Caches::dumpMemoryUsage(String8 &log) { in dumpMemoryUsage() argument
178 log.appendFormat("Current memory usage / total memory usage (bytes):\n"); in dumpMemoryUsage()
179 log.appendFormat(" TextureCache %8d / %8d\n", in dumpMemoryUsage()
181 log.appendFormat(" LayerCache %8d / %8d (numLayers = %zu)\n", in dumpMemoryUsage()
188log.appendFormat(" Layer size %dx%d; isTextureLayer()=%d; texid=%u fbo=%u; refs=%d\n", in dumpMemoryUsage()
194 log.appendFormat(" Layers total %8d (numLayers = %zu)\n", in dumpMemoryUsage()
198 log.appendFormat(" RenderBufferCache %8d / %8d\n", in dumpMemoryUsage()
200 log.appendFormat(" GradientCache %8d / %8d\n", in dumpMemoryUsage()
202 log.appendFormat(" PathCache %8d / %8d\n", in dumpMemoryUsage()
204 log.appendFormat(" TessellationCache %8d / %8d\n", in dumpMemoryUsage()
[all …]
/frameworks/base/core/java/android/hardware/camera2/utils/
DCloseableLock.java114 log("close - already closed; ignoring"); in close()
145 log("close - completed"); in close()
177 log("acquire lock early aborted (already closed)"); in acquireLock()
197 log("acquire lock unblocked aborted (already closed)"); in acquireLock()
212 log("acquired lock (local own count = " + ownedLocks + ")"); in acquireLock()
245 log("acquire exclusive lock early aborted (already closed)"); in acquireExclusiveLock()
270 log("acquire exclusive lock unblocked aborted (already closed)"); in acquireExclusiveLock()
285 log("acquired exclusive lock (local own count = " + ownedLocks + ")"); in acquireExclusiveLock()
338 log("released lock (local lock count " + ownedLocks + ")"); in releaseLock()
342 private void log(String what) { in log() method in CloseableLock
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipService.java110 if (DBG) log("SipService: started!"); in SipService()
166 if (DBG) log("open3: incomingCallPendingIntent cannot be null; " in open3()
170 if (DBG) log("open3: " + localProfile.getUriString() + ": " in open3()
206 if (DBG) log("only creator or radio can close this profile"); in close()
227 if (DBG) log("only creator or radio can query on the profile"); in isOpened()
242 if (DBG) log("only creator or radio can query on the profile"); in isRegistered()
258 if (DBG) log("only creator can set listener on the profile"); in setRegistrationListener()
265 if (DBG) log("createSession: profile" + localProfile); in createSession()
271 if (DBG) log("createSession: mNetworkType==-1 ret=null"); in createSession()
339 if (DBG) log("notify: profile added: " + localProfile); in notifyProfileAdded()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeLog.java62 log("pickupPulse withinVibrationThreshold=" + withinVibrationThreshold); in tracePickupPulse()
70 log("pulseStart reason=" + pulseReasonToString(reason)); in tracePulseStart()
76 log("pulseFinish"); in tracePulseFinish()
81 log("notificationPulse instance=" + instance); in traceNotificationPulse()
102 log("init"); in init()
112 log("dozing " + dozing); in traceDozing()
118 log("fling expand=" + expand + " aboveThreshold=" + aboveThreshold + " thresholdNeeded=" in traceFling()
124 log("emergencyCall"); in traceEmergencyCall()
130 log("bouncer " + showing); in traceKeyguardBouncerChanged()
135 log("screenOn pulsing=" + sPulsing); in traceScreenOn()
[all …]
/frameworks/base/core/java/android/bluetooth/
DBluetoothSap.java197 if (VDBG) log("getState()"); in getState()
204 if (DBG) log(Log.getStackTraceString(new Throwable())); in getState()
217 if (VDBG) log("getClient()"); in getClient()
224 if (DBG) log(Log.getStackTraceString(new Throwable())); in getClient()
236 if (VDBG) log("isConnected(" + device + ")"); in isConnected()
243 if (DBG) log(Log.getStackTraceString(new Throwable())); in isConnected()
254 if (DBG) log("connect(" + device + ")" + "not supported for SAPS"); in connect()
267 if (DBG) log("disconnect(" + device + ")"); in disconnect()
288 if (DBG) log("getConnectedDevices()"); in getConnectedDevices()
308 if (DBG) log("getDevicesMatchingStates()"); in getDevicesMatchingConnectionStates()
[all …]
DBluetoothMap.java158 if (VDBG) log("getState()"); in getState()
165 if (DBG) log(Log.getStackTraceString(new Throwable())); in getState()
177 if (VDBG) log("getClient()"); in getClient()
184 if (DBG) log(Log.getStackTraceString(new Throwable())); in getClient()
195 if (VDBG) log("isConnected(" + device + ")"); in isConnected()
202 if (DBG) log(Log.getStackTraceString(new Throwable())); in isConnected()
212 if (DBG) log("connect(" + device + ")" + "not supported for MAPS"); in connect()
224 if (DBG) log("disconnect(" + device + ")"); in disconnect()
264 if (DBG) log("getConnectedDevices()"); in getConnectedDevices()
283 if (DBG) log("getDevicesMatchingStates()"); in getDevicesMatchingConnectionStates()
[all …]

12345678910>>...15