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

1 2 3

  /packages/services/Telephony/src/com/android/phone/
BluetoothManager.java 49 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2);
101 if (VDBG) log("isBluetoothAvailable()...");
126 if (VDBG) log(" - headset state = " +
128 if (VDBG) log(" - headset address: " + device);
129 if (VDBG) log(" - isConnected: " + isConnected);
133 if (VDBG) log(" ==> " + isConnected);
142 if (VDBG) log("isBluetoothAudioConnected: ==> FALSE (null mBluetoothHeadset)");
152 if (VDBG) log("isBluetoothAudioConnected: ==> isAudioOn = " + isAudioOn);
168 if (VDBG) log("isBluetoothAudioConnectedOrPending: ==> TRUE (really connected)");
179 if (VDBG) log("isBluetoothAudioConnectedOrPending: ==> TRUE (requested
    [all...]
WiredHeadsetManager.java 39 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2);
99 if (VDBG) Log.d(LOG_TAG, "mReceiver: ACTION_HEADSET_PLUG");
100 if (VDBG) Log.d(LOG_TAG, " state: " + intent.getIntExtra("state", 0));
101 if (VDBG) Log.d(LOG_TAG, " name: " + intent.getStringExtra("name"));
CallerInfoCache.java 51 private static final boolean VDBG = false;
120 if (VDBG) log("CacheAsyncTask#onPostExecute()");
127 if (VDBG) log("CacheAsyncTask#onCanceled()");
203 if (VDBG) log("refreshCacheEntry() started");
254 if (VDBG) {
280 if (VDBG) log("refreshCacheEntry() ended");
317 if (VDBG) log("Trying to lookup " + number);
326 if (VDBG) log("Trying to lookup " + key);
330 if (VDBG) log("Obtained " + entry);
CallController.java 64 // Do not check in with VDBG = true, since that may write PII to the system log.
65 private static final boolean VDBG = false;
131 if (VDBG) log("handleMessage: " + msg);
190 if (VDBG) log(" extras = " + intent.getExtras());
210 if (VDBG) {
313 if (VDBG) log("- actual number to dial: '" + number + "'");
324 if (VDBG) log("- got Phone instance: " + phone + ", class = " + phone.getClass());
451 if (VDBG) log("placeCall: PhoneUtils.placeCall() succeeded for regular call '"
549 if (VDBG) log("checkIfOkToInitiateOutgoingCall: ServiceState = " + state);
BluetoothPhoneService.java 57 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2); // even more logging
104 if (VDBG) Log.d(TAG, "mAdapter null");
123 if(VDBG) Log.d(TAG, "registerForServiceStateChanged");
143 if (VDBG) Log.d(TAG, "BluetoothPhoneService started");
168 if (VDBG) Log.d(TAG, "handleMessage: " + msg.what);
196 if(VDBG) Log.d(TAG, "updateBtPhoneStateAfterRadioTechnologyChange...");
219 if (VDBG)
546 if (VDBG) log("Filling clccConnections[0] for INCOMING state");
551 if (VDBG) log("Filling clccConnections[0] & [1] for CALL WAITING state");
557 if (VDBG) {
    [all...]
PhoneGlobals.java 103 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2);
334 if (VDBG) Log.d(LOG_TAG, "received EVENT_DOCK_STATE_CHANGED. Phone inDock = "
375 if (VDBG) Log.v(LOG_TAG, "onCreate()...");
504 if (VDBG) Log.v(LOG_TAG, "register for ICC status");
    [all...]
CallNotifier.java 66 private static final boolean VDBG = (PhoneGlobals.DBG_LEVEL >= 2);
405 if (VDBG) log("- connection is ringing! state = " + state);
434 if (VDBG) log("Holding wake lock on new incoming connection.");
453 if (VDBG) log("- onNewRingingConnection() done.");
557 if (VDBG) log("- CallerInfo already up to date, using available data");
560 if (VDBG) log("- Starting query, posting timeout message.");
660 if (VDBG) log("- starting call waiting tone...");
679 if (VDBG) log("onPhoneStateChanged: state = " + state);
722 if (VDBG) log("onPhoneStateChanged: OFF HOOK");
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipConnectionBase.java 32 private static final boolean VDBG = false; // STOPSHIP if true
88 if (VDBG) log("getCreateTime: ret=" + mCreateTime);
94 if (VDBG) log("getConnectTime: ret=" + mConnectTime);
100 if (VDBG) log("getDisconnectTime: ret=" + mDisconnectTime);
114 if (VDBG) log("getDurationMillis: ret=" + dur);
127 if (VDBG) log("getHoldDurationMillis: ret=" + dur);
133 if (VDBG) log("getDisconnectCause: ret=" + mCause);
144 if (VDBG) log("getPostDialState: ret=" + mPostDialState);
185 if (VDBG) log("getNumberPresentation: ret=PRESENTATION_ALLOWED");
192 if (VDBG) log("getUUSInfo: ? ret=null")
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RetryManager.java 78 static public final boolean VDBG = false;
117 if (VDBG) log("constructor");
147 if (VDBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime);
183 if (VDBG) log("configure: '" + configStr + "'");
189 if (VDBG) log("configure: not empty");
197 if (VDBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'");
201 if (VDBG) log("configure: splitStr[0]='" + splitStr[0] + "'");
204 if (VDBG) log("configure: splitStr[1]='" + splitStr[1] + "'");
237 if (VDBG) log("configure: splitStr[1]='" + splitStr[1] + "'");
249 if (VDBG) log("configure: setting mMaxRetryCount=" + mMaxRetryCount)
    [all...]
CallManager.java 59 private static final boolean VDBG = false;
386 if (VDBG) Rlog.d(LOG_TAG, "requestAudioFocus on STREAM_RING");
414 if (VDBG) Rlog.d(LOG_TAG, "requestAudioFocus on STREAM_VOICE_CALL");
424 if (VDBG) Rlog.d(LOG_TAG, "abandonAudioFocus");
520 if (VDBG) {
530 if (VDBG) {
562 if (VDBG) {
578 if (VDBG) {
587 if (VDBG) {
615 if (VDBG) {
    [all...]
PhoneSubInfo.java 32 private static final boolean VDBG = false; // STOPSHIP if true
141 if (VDBG) log("VM: PhoneSubInfo.getVoiceMailNUmber: " + number);
155 if (VDBG) log("VM: PhoneSubInfo.getCompleteVoiceMailNUmber: " + number);
  /frameworks/base/core/java/android/bluetooth/
BluetoothSocket.java 90 private static final boolean VDBG = false;
193 if (VDBG) Log.d(TAG, "socket fd passed by stack fds: " + fds);
359 if (VDBG) Log.d(TAG, "bindListen(), SocketState: " + mSocketState + ", mPfd: " +
364 if (VDBG) Log.d(TAG, "bindListen(), new LocalSocket ");
366 if (VDBG) Log.d(TAG, "bindListen(), new LocalSocket.getInputStream() ");
370 if (VDBG) Log.d(TAG, "bindListen(), readInt mSocketIS: " + mSocketIS);
376 if (VDBG) Log.d(TAG, "channel: " + channel);
409 if (VDBG) Log.d(TAG, "available: " + mSocketIS);
420 if (VDBG) Log.d(TAG, "flush: " + mSocketOS);
426 if (VDBG) Log.d(TAG, "read in: " + mSocketIS + " len: " + length)
    [all...]
BluetoothPan.java 47 private static final boolean VDBG = false;
140 if (VDBG) Log.d(TAG, "BluetoothPan() call bindService");
142 if (VDBG) Log.d(TAG, "BluetoothPan(), bindService called");
157 if (VDBG) log("close()");
193 if (VDBG) Log.d(TAG, "BluetoothPan(), bindService called");
195 if (VDBG) Log.d(TAG,"Unbinding service...");
286 if (VDBG) log("getConnectedDevices()");
303 if (VDBG) log("getDevicesMatchingStates()");
320 if (VDBG) log("getState(" + device + ")");
344 if (VDBG) log("isTetheringOn()")
    [all...]
BluetoothPbap.java 55 private static final boolean VDBG = false;
118 if (VDBG) Log.d(TAG,"Unbinding service...");
131 if (VDBG) Log.d(TAG,"Binding service...");
214 if (VDBG) log("getState()");
233 if (VDBG) log("getClient()");
251 if (VDBG) log("isConnected(" + device + ")");
BluetoothInputDevice.java 48 private static final boolean VDBG = false;
195 if (VDBG) Log.d(TAG,"Unbinding service...");
208 if (VDBG) Log.d(TAG,"Binding service...");
253 if (VDBG) log("close()");
354 if (VDBG) log("getConnectedDevices()");
371 if (VDBG) log("getDevicesMatchingStates()");
388 if (VDBG) log("getState(" + device + ")");
448 if (VDBG) log("getPriority(" + device + ")");
529 if (VDBG) log("getProtocolMode(" + device + ")");
580 if (VDBG) log("getReport(" + device + "), reportType=" + reportType + " reportId=" + reportId + "bufferSize (…)
    [all...]
BluetoothA2dp.java 48 private static final boolean VDBG = false;
117 if (VDBG) Log.d(TAG,"Unbinding service...");
130 if (VDBG) Log.d(TAG,"Binding service...");
280 if (VDBG) log("getConnectedDevices()");
297 if (VDBG) log("getDevicesMatchingStates()");
314 if (VDBG) log("getState(" + device + ")");
376 if (VDBG) log("getPriority(" + device + ")");
BluetoothMap.java 39 private static final boolean VDBG = false;
62 if (VDBG) Log.d(TAG,"Unbinding service...");
75 if (VDBG) Log.d(TAG,"Binding service...");
159 if (VDBG) log("getState()");
178 if (VDBG) log("getClient()");
196 if (VDBG) log("isConnected(" + device + ")");
358 if (VDBG) log("getPriority(" + device + ")");
BluetoothHeadset.java 49 private static final boolean VDBG = false;
235 if (VDBG) Log.d(TAG,"Unbinding service...");
248 if (VDBG) Log.d(TAG,"Binding service...");
297 if (VDBG) log("close()");
403 if (VDBG) log("getConnectedDevices()");
420 if (VDBG) log("getDevicesMatchingStates()");
437 if (VDBG) log("getConnectionState(" + device + ")");
499 if (VDBG) log("getPriority(" + device + ")");
582 if (VDBG) log("isAudioConnected()");
610 if (VDBG) log("getBatteryUsageHint()")
    [all...]
BluetoothHealth.java 61 private static final boolean VDBG = false;
106 if (VDBG) Log.d(TAG,"Unbinding service...");
119 if (VDBG) Log.d(TAG,"Binding service...");
150 if (VDBG) log("registerSinkApplication(" + name + ":" + dataType + ")");
176 if (VDBG) log("registerApplication(" + name + ":" + dataType + ")");
499 if (VDBG) log("close()");
BluetoothTetheringDataTracker.java 62 private static final boolean VDBG = true;
113 if (VDBG) Log.d(TAG, "startMonitoring: mCsHandler: " + mCsHandler);
397 if (VDBG) Log.d(TAG, "got CMD_CHANNEL_HALF_CONNECTED");
409 if (VDBG) Log.d(TAG, "got CMD_CHANNEL_DISCONNECTED");
415 if (VDBG) Log.d(TAG, "got EVENT_NETWORK_CONNECTED, " + linkProperties);
420 if (VDBG) Log.d(TAG, "got EVENT_NETWORK_DISCONNECTED, " + linkProperties);
  /system/netd/
MDnsSdListener.cpp 32 #define VDBG 1
65 if (VDBG) {
77 if (VDBG) ALOGD("using ref %p", ref);
91 if (VDBG) ALOGD("discover successful");
111 if (VDBG) {
117 if (VDBG) {
145 if (VDBG) ALOGD("Stopping %s with ref %p", str, ref);
157 if (VDBG) {
184 if (VDBG) ALOGD("serviceRegister successful");
204 if (VDBG) ALOGD("register succeeded for %d as %s", refNumber, serviceName)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 51 private static final boolean VDBG = Rlog.isLoggable(TAG, Log.VERBOSE);
165 if (VDBG) Rlog.v(TAG, "getCallerInfo() based on cursor...");
210 if (VDBG) Rlog.v(TAG, "==> got info.person_id: " + info.person_id);
270 if (VDBG) Rlog.v(TAG, "getCallerInfo() based on number...");
474 if (VDBG) Rlog.v(TAG, "- getColumnIndexForPersonId: contactRef URI = '"
477 // if (VDBG) Rlog.v(TAG, "- MIME type: "
485 if (VDBG) Rlog.v(TAG, "'data/phones' URI; using RawContacts.CONTACT_ID");
490 if (VDBG) Rlog.v(TAG, "'data' URI; using Data.CONTACT_ID");
497 if (VDBG) Rlog.v(TAG, "'phone_lookup' URI; using PhoneLookup._ID");
503 if (VDBG) Rlog.v(TAG, "==> Using column '" + columnNam
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
EriManager.java 88 private static final boolean VDBG = false;
289 if (VDBG) Rlog.v(LOG_TAG, "ERI roamInd " + roamInd + " found in ERI file");
399 if (VDBG) Rlog.v(LOG_TAG, "ERI defRoamInd > 2 ...flashing");
406 if (VDBG) Rlog.v(LOG_TAG, "ERI defRoamInd <= 2");
441 if (VDBG) {
455 if (VDBG) {
464 if (VDBG) Rlog.v(LOG_TAG, "ERI roamInd " + roamInd + " found in ERI file");
473 if (VDBG) Rlog.v(LOG_TAG, "Displaying ERI " + ret.toString());
CdmaSMSDispatcher.java 43 private static final boolean VDBG = false;
61 if (VDBG) Rlog.d(TAG, "sending EVENT_HANDLE_STATUS_REPORT message");
68 if (VDBG) Rlog.d(TAG, "calling handleCdmaStatusReport()");
167 if (VDBG) {
  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java 78 private final static boolean VDBG = false;
206 if (VDBG) Log.d(TAG, "interfaceStatusChanged " + iface + ", " + up);
231 if (VDBG) Log.d(TAG, "ignore interface down for " + iface);
241 if (VDBG) Log.d(TAG, "interfaceLinkStateChanged " + iface + ", " + up);
273 if (VDBG) Log.d(TAG, "interfaceAdded " + iface);
288 if (VDBG) Log.d(TAG, iface + " is not a tetherable iface, ignoring");
294 if (VDBG) Log.d(TAG, "active iface (" + iface + ") reported as added, ignoring");
304 if (VDBG) Log.d(TAG, "interfaceRemoved " + iface);
308 if (VDBG) {
516 if (VDBG) Log.d(TAG, "Tethering got CONNECTIVITY_ACTION")
    [all...]

Completed in 385 milliseconds

1 2 3