Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 2199) sorted by relevance

12345678910>>...88

/frameworks/layoutlib/bridge/src/android/graphics/
DMatrix_Delegate.java202 Matrix_Delegate d = sManager.getDelegate(native_object); in nIsIdentity() local
203 if (d == null) { in nIsIdentity()
207 return d.isIdentity(); in nIsIdentity()
212 Matrix_Delegate d = sManager.getDelegate(native_object); in nIsAffine() local
213 if (d == null) { in nIsAffine()
217 return (d.computeTypeMask() & kPerspective_Mask) == 0; in nIsAffine()
222 Matrix_Delegate d = sManager.getDelegate(native_object); in nRectStaysRect() local
223 if (d == null) { in nRectStaysRect()
227 return (d.computeTypeMask() & kRectStaysRect_Mask) != 0; in nRectStaysRect()
232 Matrix_Delegate d = sManager.getDelegate(native_object); in nReset() local
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DImageDescriptor.java57 ImageDescriptor d = new ImageDescriptor(); in parse() local
59 d.mWidth = rawData[valueIndex++] & 0xff; in parse()
60 d.mHeight = rawData[valueIndex++] & 0xff; in parse()
61 d.mCodingScheme = rawData[valueIndex++] & 0xff; in parse()
64 d.mImageId = (rawData[valueIndex++] & 0xff) << 8; in parse()
65 d.mImageId |= rawData[valueIndex++] & 0xff; in parse()
67 d.mHighOffset = (rawData[valueIndex++] & 0xff); // high byte offset in parse()
68 d.mLowOffset = rawData[valueIndex++] & 0xff; // low byte offset in parse()
70 d.mLength = ((rawData[valueIndex++] & 0xff) << 8 | (rawData[valueIndex++] & 0xff)); in parse()
71 CatLog.d("ImageDescriptor", "parse; Descriptor : " + d.mWidth + ", " + d.mHeight + in parse()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/
DGestureManifoldTest.java71 final int d = 1000; // Length of each segment in the test gesture, in pixels. in testRecognizeGesturePath() local
73 testPath(p(-d, +0), AccessibilityService.GESTURE_SWIPE_LEFT); in testRecognizeGesturePath()
74 testPath(p(+d, +0), AccessibilityService.GESTURE_SWIPE_RIGHT); in testRecognizeGesturePath()
75 testPath(p(+0, -d), AccessibilityService.GESTURE_SWIPE_UP); in testRecognizeGesturePath()
76 testPath(p(+0, +d), AccessibilityService.GESTURE_SWIPE_DOWN); in testRecognizeGesturePath()
78 testPath(p(-d, +0), p((-d - d), +0), AccessibilityService.GESTURE_SWIPE_LEFT); in testRecognizeGesturePath()
79 testPath(p(-d, +0), p(+0, +0), AccessibilityService.GESTURE_SWIPE_LEFT_AND_RIGHT); in testRecognizeGesturePath()
80 testPath(p(-d, +0), p(-d, -d), AccessibilityService.GESTURE_SWIPE_LEFT_AND_UP); in testRecognizeGesturePath()
81 testPath(p(-d, +0), p(-d, +d), AccessibilityService.GESTURE_SWIPE_LEFT_AND_DOWN); in testRecognizeGesturePath()
83 testPath(p(+d, +0), p(+0, +0), AccessibilityService.GESTURE_SWIPE_RIGHT_AND_LEFT); in testRecognizeGesturePath()
[all …]
/frameworks/av/media/codec2/hidl/1.0/utils/
Dtypes.cpp69 void copyVector(DstVector* d, const SrcVector& s) { in copyVector() argument
70 static_assert(sizeof(Common) == sizeof(decltype((*d)[0])), in copyVector()
74 d->resize(s.size()); in copyVector()
78 reinterpret_cast<Common*>(&(*d)[0])); in copyVector()
82 bool objcpy(ParamField *d, const C2ParamField &s) { in objcpy() argument
83 d->index = static_cast<ParamIndex>(_C2ParamInspector::GetIndex(s)); in objcpy()
84 d->fieldId.offset = static_cast<uint32_t>(_C2ParamInspector::GetOffset(s)); in objcpy()
85 d->fieldId.size = static_cast<uint32_t>(_C2ParamInspector::GetSize(s)); in objcpy()
102 bool objcpy(WorkOrdinal *d, const C2WorkOrdinalStruct &s) { in objcpy() argument
103 d->frameIndex = static_cast<uint64_t>(s.frameIndex.peeku()); in objcpy()
[all …]
/frameworks/base/services/tests/servicestests/assets/KeyStoreRecoveryControllerTest/pem/
Dvalid-cert.pem70 75:60:e2:77:81:2e:3b:c6:5e:73:4d:e8:c2:7b:1d:
72 a0:6d:43:eb:e3:7c:7c:5f:51:f1:ac:13:98:0b:1b:
74 21:fb:4e:17:1a:88:24:16:21:88:a8:4d:26:13:ed:
75 17:58:bd:76:7f:8d:e4:78:c4:2a:69:09:3b:7a:57:
77 61:3e:da:0e:0f:69:9d:a3:3a:0b:ee:21:9a:14:3f:
78 d2:ad:a8:cb:36:2d:02:a1:66:ac:47:a7:6e:d2:3a:
79 1b:8e:d2:cc:c7:3e:b2:13:53:b9:82:ed:ab:6d:63:
80 fd:9d:ee:03:74:70:07:d4:b3:7e:ef:7d:17:ae:ad:
81 96:04:d7:bf:b2:bb:61:2e:7b:de:13:77:4d:06:3f:
82 fa:79:0b:7c:5c:bf:a0:5d:8b:41:16:2f:28:71:7e:
[all …]
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBinderDeathDispatcherTest.java136 BinderDeathDispatcher<MyTarget> d = new BinderDeathDispatcher<>(); in testRegisterAndUnregister() local
151 assertThat(d.linkToDeath(t1, r1)).isEqualTo(1); in testRegisterAndUnregister()
152 assertThat(d.getTargetsForTest().size()).isEqualTo(1); in testRegisterAndUnregister()
154 assertThat(d.linkToDeath(t1, r2)).isEqualTo(2); in testRegisterAndUnregister()
155 assertThat(d.linkToDeath(t1, r3)).isEqualTo(3); in testRegisterAndUnregister()
156 assertThat(d.getTargetsForTest().size()).isEqualTo(1); in testRegisterAndUnregister()
159 d.unlinkToDeath(t1, r1); in testRegisterAndUnregister()
160 d.unlinkToDeath(t1, r2); in testRegisterAndUnregister()
163 assertThat(d.getTargetsForTest().size()).isEqualTo(1); in testRegisterAndUnregister()
166 d.unlinkToDeath(t1, r3); in testRegisterAndUnregister()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DBroadcastDispatcher.java82 void dumpLocked(Dumper d) { in dumpLocked() argument
84 d.dump(br); in dumpLocked()
176 Deferrals d = mDeferredBroadcasts.remove(i);
177 mAlarmBroadcasts.add(d);
200 Deferrals d = mAlarmBroadcasts.remove(i);
201 insertLocked(mDeferredBroadcasts, d);
334 final Deferrals d = list.get(i); in replaceDeferredBroadcastLocked() local
335 old = replaceBroadcastLocked(d.broadcasts, r, typeForLogging); in replaceDeferredBroadcastLocked()
391 for (Deferrals d : list) { in cleanupDeferralsListDisabledReceiversLocked()
392 didSomething = cleanupBroadcastListDisabledReceiversLocked(d.broadcasts, in cleanupDeferralsListDisabledReceiversLocked()
[all …]
/frameworks/base/tests/CoreTests/android/core/
DRequestAPITest.java53 Log.d(LOGTAG, "Base setup context = " + mContext); in setUp()
62 Log.d(LOGTAG, "Base tearDown"); in tearDown()
64 Log.d(LOGTAG, "Base teardown done"); in tearDown()
88 Log.d(LOGTAG, "testRequestAddNullHeader start "); in testRequestAddNullHeader()
92 Log.d(LOGTAG, "testRequestAddNullHeader - returning"); in testRequestAddNullHeader()
100 Log.d(LOGTAG, "testRequestAddNullValue start "); in testRequestAddNullValue()
104 Log.d(LOGTAG, "testRequestAddNullValue - returning"); in testRequestAddNullValue()
112 Log.d(LOGTAG, "testRequestAddEmptyValue start "); in testRequestAddEmptyValue()
116 Log.d(LOGTAG, "testRequestAddEmptyValue - returning"); in testRequestAddEmptyValue()
132 Log.d(LOGTAG, "testRequestAddHeader start "); in testRequestAddHeader()
[all …]
/frameworks/base/startop/scripts/trace_analyzer/test_fixtures/
Dcommon_systrace14 …<...>-18150 (-----) [004] d..2 14594.182110: sched_switch: prev_comm=kworker/u16:18 prev_pid=18150…
15 …kworker/u16:16-23269 (23269) [004] d.h3 14594.182228: sched_blocked_reason: pid=18150 iowait=0 cal…
16 …kworker/u16:16-23269 (23269) [004] d..2 14594.182248: sched_switch: prev_comm=kworker/u16:16 prev_…
17 …<...>-18150 (-----) [004] d..2 14594.182312: sched_switch: prev_comm=kworker/u16:18 prev_pid=18150…
18 …<...>-18150 (-----) [004] d..2 14594.182488: sched_switch: prev_comm=kworker/u16:18 prev_pid=18150…
19 …kworker/u16:16-23269 (23269) [005] d..2 14594.182610: sched_switch: prev_comm=kworker/u16:16 prev_…
20 …<...>-18150 (-----) [004] d..2 14594.182626: sched_switch: prev_comm=kworker/u16:18 prev_pid=18150…
21 …<...>-18150 (-----) [004] d..2 14594.182755: sched_switch: prev_comm=kworker/u16:18 prev_pid=18150…
22 …<...>-18150 (-----) [004] d..2 14594.182975: sched_switch: prev_comm=kworker/u16:18 prev_pid=18150…
23 …<...>-18150 (-----) [004] d..2 14594.183209: sched_switch: prev_comm=kworker/u16:18 prev_pid=18150…
[all …]
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
Drange.h12 template <class T, int d>
16 Range(Eigen::Vector<T, d> p1, Eigen::Vector<T, d> p2) : p1(p1), p2(p2) {} in Range()
18 static Range<T, d> FromSize(Eigen::Vector<T, d> p1, in FromSize()
19 Eigen::Vector<T, d> size) { in FromSize()
20 return Range<T, d>(p1, p1 + size); in FromSize()
23 bool operator==(const Range<T, d>& rhs) const {
27 Eigen::Vector<T, d> GetMinPoint() const { return p1; } in GetMinPoint()
29 Eigen::Vector<T, d> GetMaxPoint() const { return p2; } in GetMaxPoint()
31 Eigen::Vector<T, d> GetSize() const { return p2 - p1; } in GetSize()
33 Eigen::Vector<T, d> p1;
[all …]
/frameworks/base/core/java/android/view/animation/
DClipRectAnimation.java68 Description d = Description.parseValue(a.peekValue( in ClipRectAnimation() local
70 mFromLeftType = d.type; in ClipRectAnimation()
71 mFromLeftValue = d.value; in ClipRectAnimation()
73 d = Description.parseValue(a.peekValue( in ClipRectAnimation()
75 mFromTopType = d.type; in ClipRectAnimation()
76 mFromTopValue = d.value; in ClipRectAnimation()
78 d = Description.parseValue(a.peekValue( in ClipRectAnimation()
80 mFromRightType = d.type; in ClipRectAnimation()
81 mFromRightValue = d.value; in ClipRectAnimation()
83 d = Description.parseValue(a.peekValue( in ClipRectAnimation()
[all …]
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
DSoundPoolTest.java84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status); in onLoadComplete()
131 if (DEBUG) Log.d(LOG_TAG, "Begin sounds test"); in TestSounds()
136 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestSounds()
143 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestSounds()
146 if (DEBUG) Log.d(LOG_TAG, "End sounds test"); in TestSounds()
151 if (DEBUG) Log.d(LOG_TAG, "Begin scale test"); in TestScales()
158 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestScales()
165 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestScales()
168 if (DEBUG) Log.d(LOG_TAG, "End scale test"); in TestScales()
173 if (DEBUG) Log.d(LOG_TAG, "Begin rate test"); in TestRates()
[all …]
/frameworks/base/startop/scripts/trace_analyzer/lib/
Dtrace2db.py108 d = {}
110 d['id'] = id
111 d['prev_comm'] = groups[0]
112 d['prev_pid'] = int(groups[1])
113 d['prev_prio'] = int(groups[2])
114 d['prev_state'] = groups[3]
115 d['next_comm'] = groups[4]
116 d['next_pid'] = int(groups[5])
117 d['next_prio'] = int(groups[6])
119 return d
[all …]
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DBlurStack.java187 for (int d = front; d >= back; --d) { in toString()
188 s += "layer " + n + " disparity " + d + " disk radius " in toString()
189 + getDiskRadius(d) + "\n"; in toString()
365 int d = backFocalDepth - 1; in groupDepthLevelsBehindFocus() local
366 layerInfo.add(new LayerInfo(d)); in groupDepthLevelsBehindFocus()
368 float radiusThreshold = getDiskRadius(d) + diskRadiusInterval; in groupDepthLevelsBehindFocus()
373 while (d > MIN_DEPTH) { in groupDepthLevelsBehindFocus()
375 d--; in groupDepthLevelsBehindFocus()
376 if (getDiskRadius(d) <= radiusThreshold) { in groupDepthLevelsBehindFocus()
379 layerInfo.get(numLayers - 1).backDepth = d; in groupDepthLevelsBehindFocus()
[all …]
/frameworks/rs/support/java/src/androidx/renderscript/
DAllocation.java89 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { in validateObjectIsPrimitiveArray() argument
90 final Class c = d.getClass(); in validateObjectIsPrimitiveArray()
600 public void copyFrom(BaseObj[] d) { in copyFrom() argument
603 if (d.length != mCurrentCount) { in copyFrom()
605 mCurrentCount + ", array length = " + d.length); in copyFrom()
609 long i[] = new long[d.length * 4]; in copyFrom()
610 for (int ct=0; ct < d.length; ct++) { in copyFrom()
611 i[ct * 4] = d[ct].getID(mRS); in copyFrom()
615 int i[] = new int[d.length]; in copyFrom()
616 for (int ct=0; ct < d.length; ct++) { in copyFrom()
[all …]
/frameworks/av/services/mediatranscoding/tests/TranscodingUidPolicyTestApp/src/com/android/tests/transcoding/
DResourcePolicyTestActivity.java47 Log.d(TAG, "onInputBufferAvailable " + codec.toString()); in onInputBufferAvailable()
53 Log.d(TAG, "onOutputBufferAvailable " + codec.toString()); in onOutputBufferAvailable()
58 Log.d(TAG, "onError " + codec.toString() + " errorCode " + e.getErrorCode()); in onError()
63 Log.d(TAG, "onOutputFormatChanged " + codec.toString()); in onOutputFormatChanged()
102 Log.d(TAG, "securePlayback " + securePlayback + " will use " + info.getName()); in getTestCodecInfo()
104 Log.d(TAG, "securePlayback " + securePlayback + " skip " + info.getName()); in getTestCodecInfo()
122 Log.d(TAG, "type is: " + type); in allocateCodecs()
150 Log.d(TAG, "test skipped as there's no supported codec."); in allocateCodecs()
154 Log.d(TAG, "allocateCodecs returned " + mCodecs.size()); in allocateCodecs()
165 Log.d(TAG, "Create codec " + name + " #" + i); in allocateCodecs()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DFakeSession.java88 Log.d(TAG, "requested: " + requested); in requestTile()
91 Log.d(TAG, "page: " + page); in requestTile()
94 Log.d(TAG, "requested not within page, scrolling"); in requestTile()
99 Log.d(TAG, "distTop = " + distTop); in requestTile()
100 Log.d(TAG, "distBottom = " + distBottom); in requestTile()
111 Log.d(TAG, "trying to scroll up by " + -distTop + " px"); in requestTile()
114 Log.d(TAG, "new scrollDelta = " + mScrollDelta); in requestTile()
116 Log.d(TAG, "trying to scroll down by " + distBottom + " px"); in requestTile()
120 Log.d(TAG, "new scrollDelta = " + mScrollDelta); in requestTile()
125 Log.d(TAG, "scrollDelta, adjusted to available range = " + mScrollDelta); in requestTile()
[all …]
/frameworks/base/core/java/com/android/internal/content/
DF2fsUtils.java57 Slog.d(TAG, "f2fs compression DISABLED; feature not part of the kernel"); in Slog.d()
63 Slog.d(TAG, "f2fs compression DISABLED; feature not enabled on filesystem"); in Slog.d()
99 Slog.d(TAG, "SKIP; release compress blocks not enabled"); in releaseCompressedBlocks()
105 Slog.d(TAG, "SKIP; compression not allowed"); in releaseCompressedBlocks()
112 Slog.d(TAG, "SKIP; no files to compress"); in releaseCompressedBlocks()
119 Slog.d(TAG, "RELEASED " + releasedBlocks + " blocks" in releaseCompressedBlocks()
139 Slog.d(TAG, "f2fs compression DISABLED; could not determine path"); in isCompressionAllowed()
145 Slog.d(TAG, "f2fs compression DISABLED; file on incremental fs"); in isCompressionAllowed()
151 Slog.d(TAG, "f2fs compression DISABLED; file not on /data"); in isCompressionAllowed()
156 Slog.d(TAG, "f2fs compression ENABLED"); in isCompressionAllowed()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
DDataCollector.java273 Log.d(TAG, "onScreenTurningOn"); in onScreenTurningOn()
282 Log.d(TAG, "onScreenOnFromTouch"); in onScreenOnFromTouch()
290 Log.d(TAG, "onScreenOff"); in onScreenOff()
298 Log.d(TAG, "onSuccessfulUnlock"); in onSucccessfulUnlock()
306 Log.d(TAG, "onBouncerShown"); in onBouncerShown()
313 Log.d(TAG, "onBouncerHidden"); in onBouncerHidden()
320 Log.d(TAG, "onQsDown"); in onQsDown()
327 Log.d(TAG, "setQsExpanded = " + expanded); in setQsExpanded()
338 Log.d(TAG, "onTrackingStarted"); in onTrackingStarted()
347 Log.d(TAG, "onTrackingStopped"); in onTrackingStopped()
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DQuickRejectActivity.java56 Log.d("OpenGLRenderer", "count=" + count); in onDraw()
58 Log.d("OpenGLRenderer", "count after save=" + count); in onDraw()
60 Log.d("OpenGLRenderer", "getSaveCount after save=" + count); in onDraw()
63 Log.d("OpenGLRenderer", "count after restore=" + count); in onDraw()
65 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw()
67 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw()
69 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw()
72 Log.d("OpenGLRenderer", "count after restoreToCount=" + count); in onDraw()
74 Log.d("OpenGLRenderer", "count after saveLayer=" + count); in onDraw()
76 Log.d("OpenGLRenderer", "getSaveCount after saveLayer=" + count); in onDraw()
[all …]
/frameworks/base/rs/java/android/renderscript/
DAllocation.java95 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { in validateObjectIsPrimitiveArray() argument
96 final Class c = d.getClass(); in validateObjectIsPrimitiveArray()
608 public void copyFrom(BaseObj[] d) { in copyFrom() argument
613 if (d.length != mCurrentCount) { in copyFrom()
615 … mCurrentCount + ", array length = " + d.length); in copyFrom()
619 long i[] = new long[d.length * 4]; in copyFrom()
620 for (int ct=0; ct < d.length; ct++) { in copyFrom()
621 i[ct * 4] = d[ct].getID(mRS); in copyFrom()
625 int i[] = new int[d.length]; in copyFrom()
626 for (int ct=0; ct < d.length; ct++) { in copyFrom()
[all …]
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/eab/
DEabBulkCapabilityUpdater.java82 Log.d(TAG, "Capability expired."); in onAlarm()
90 Log.d(TAG, "expiredContactList is empty."); in onAlarm()
110 Log.d(TAG, "Contact changed"); in onChange()
128 Log.d(TAG, "EAB user setting changed: " + isUserEnableUce); in onChange()
147 Log.d(TAG, "Carrier config changed. " in onReceive()
163 Log.d(TAG, "onCapabilitiesReceived");
169 Log.d(TAG, "onComplete");
174 Log.d(TAG, "Refresh capabilities failed. Error code: " + errorCode
190 Log.d(TAG, "Sync contact from contact provider"); in run()
203 Log.d(TAG, "Retry refreshCapabilities()"); in run()
[all …]
/frameworks/av/media/libeffects/factory/
DEffectsConfigLoader.c238 effect_descriptor_t *d; in addSubEffect() local
258 d = malloc(sizeof(effect_descriptor_t)); in addSubEffect()
259 if (l->desc->get_descriptor(&uuid, d) != 0) { in addSubEffect()
263 free(d); in addSubEffect()
268 dumpEffectDescriptor(d, s, sizeof(s), 0 /* indent */); in addSubEffect()
269 ALOGV("addSubEffect() read descriptor %p:%s",d, s); in addSubEffect()
271 if (EFFECT_API_VERSION_MAJOR(d->apiVersion) != in addSubEffect()
273 ALOGW("Bad API version %08x on lib %s", d->apiVersion, l->name); in addSubEffect()
274 free(d); in addSubEffect()
278 sub_effect->object = d; in addSubEffect()
[all …]
/frameworks/base/telephony/common/com/android/internal/telephony/
DHbpcdUtils.java57 Log.d(LOG_TAG, "Query unresolved arbitrary table, entries are " + c2Counter); in getMcc()
61 Log.d(LOG_TAG, "Query Unresolved arbitrary returned the cursor " + c2); in getMcc()
66 Log.d(LOG_TAG, "MCC found in arbitrary_mcc_sid_match: " + tmpMcc); in getMcc()
90 if (DBG) Log.d(LOG_TAG, "Query conflict sid returned the cursor " + c3); in getMcc()
94 Log.d(LOG_TAG, "MCC found in mcc_lookup_table. Return tmpMcc = " + tmpMcc); in getMcc()
99 Log.d(LOG_TAG, "time zone is not accurate, mcc may be " + tmpMcc); in getMcc()
118 if (DBG) Log.d(LOG_TAG, "Query Range returned the cursor " + c5); in getMcc()
121 if (DBG) Log.d(LOG_TAG, "SID found in mcc_sid_range. Return tmpMcc = " + tmpMcc); in getMcc()
127 if (DBG) Log.d(LOG_TAG, "SID NOT found in mcc_sid_range."); in getMcc()
129 if (DBG) Log.d(LOG_TAG, "Exit getMccByOtherFactors. Return tmpMcc = " + tmpMcc); in getMcc()
[all …]
/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
DUsbVCInterface.java53 Log.d(TAG, " Video Class-specific Interface subtype: " + subtype); in allocDescriptor()
59 Log.d(TAG, " ---> VCI_UNDEFINED"); in allocDescriptor()
66 Log.d(TAG, " ---> VCI_VEADER"); in allocDescriptor()
71 Log.d(TAG, " vcInterfaceSpec:0x" + Integer.toHexString(vcInterfaceSpec)); in allocDescriptor()
78 Log.d(TAG, " ---> VCI_INPUT_TERMINAL"); in allocDescriptor()
84 Log.d(TAG, " ---> VCI_OUTPUT_TERMINAL"); in allocDescriptor()
90 Log.d(TAG, " ---> VCI_SELECTOR_UNIT"); in allocDescriptor()
96 Log.d(TAG, " ---> VCI_PROCESSING_UNIT"); in allocDescriptor()
102 Log.d(TAG, " ---> VCI_EXTENSION_UNIT"); in allocDescriptor()

12345678910>>...88