Home
last modified time | relevance | path

Searched refs:spaces (Results 1 – 25 of 45) sorted by relevance

12

/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DAudioGain.cpp101 void AudioGain::dump(int fd, int spaces, int index) const in dump() argument
107 snprintf(buffer, SIZE, "%*sGain %d:\n", spaces, "", index+1); in dump()
109 snprintf(buffer, SIZE, "%*s- mode: %08x\n", spaces, "", mGain.mode); in dump()
111 snprintf(buffer, SIZE, "%*s- channel_mask: %08x\n", spaces, "", mGain.channel_mask); in dump()
113 snprintf(buffer, SIZE, "%*s- min_value: %d mB\n", spaces, "", mGain.min_value); in dump()
115 snprintf(buffer, SIZE, "%*s- max_value: %d mB\n", spaces, "", mGain.max_value); in dump()
117 snprintf(buffer, SIZE, "%*s- default_value: %d mB\n", spaces, "", mGain.default_value); in dump()
119 snprintf(buffer, SIZE, "%*s- step_value: %d mB\n", spaces, "", mGain.step_value); in dump()
121 snprintf(buffer, SIZE, "%*s- min_ramp_ms: %d ms\n", spaces, "", mGain.min_ramp_ms); in dump()
123 snprintf(buffer, SIZE, "%*s- max_ramp_ms: %d ms\n", spaces, "", mGain.max_ramp_ms); in dump()
DAudioSession.cpp133 status_t AudioSession::dump(int fd, int spaces, int index) const in dump() argument
139 snprintf(buffer, SIZE, "%*sAudio session %d:\n", spaces, "", index+1); in dump()
141 snprintf(buffer, SIZE, "%*s- session: %2d\n", spaces, "", mSession); in dump()
143 snprintf(buffer, SIZE, "%*s- owner uid: %2d\n", spaces, "", mUid); in dump()
145 snprintf(buffer, SIZE, "%*s- input source: %d\n", spaces, "", mInputSource); in dump()
147 snprintf(buffer, SIZE, "%*s- format: %08x\n", spaces, "", mConfig.format); in dump()
149 snprintf(buffer, SIZE, "%*s- sample: %d\n", spaces, "", mConfig.sample_rate); in dump()
152 spaces, "", mConfig.channel_mask); in dump()
155 spaces, "", mIsSoundTrigger ? "true" : "false"); in dump()
157 snprintf(buffer, SIZE, "%*s- open count: %d\n", spaces, "", mOpenCount); in dump()
[all …]
DAudioPatch.cpp38 status_t AudioPatch::dump(int fd, int spaces, int index) const in dump() argument
44 snprintf(buffer, SIZE, "%*sAudio patch %d:\n", spaces, "", index+1); in dump()
46 snprintf(buffer, SIZE, "%*s- handle: %2d\n", spaces, "", mHandle); in dump()
48 snprintf(buffer, SIZE, "%*s- audio flinger handle: %2d\n", spaces, "", mAfPatchHandle); in dump()
50 snprintf(buffer, SIZE, "%*s- owner uid: %2d\n", spaces, "", mUid); in dump()
52 snprintf(buffer, SIZE, "%*s- %d sources:\n", spaces, "", mPatch.num_sources); in dump()
58 snprintf(buffer, SIZE, "%*s- Device ID %d %s\n", spaces + 2, "", in dump()
62 snprintf(buffer, SIZE, "%*s- Mix ID %d I/O handle %d\n", spaces + 2, "", in dump()
67 snprintf(buffer, SIZE, "%*s- %d sinks:\n", spaces, "", mPatch.num_sinks); in dump()
73 snprintf(buffer, SIZE, "%*s- Device ID %d %s\n", spaces + 2, "", in dump()
[all …]
DAudioRoute.cpp27 void AudioRoute::dump(int fd, int spaces) const in dump()
33 snprintf(buffer, SIZE, "%*s- Type: %s\n", spaces, "", mType == AUDIO_ROUTE_MUX ? "Mux" : "Mix"); in dump()
36 snprintf(buffer, SIZE, "%*s- Sink: %s\n", spaces, "", mSink->getTagName().string()); in dump()
40 snprintf(buffer, SIZE, "%*s- Sources: \n", spaces, ""); in dump()
43 snprintf(buffer, SIZE, "%*s%s \n", spaces + 4, "", mSources[i]->getTagName().string()); in dump()
DDeviceDescriptor.cpp206 status_t DeviceVector::dump(int fd, const String8 &tag, int spaces, bool verbose) const in dump() argument
214 snprintf(buffer, SIZE, "%*s- %s devices:\n", spaces, "", tag.string()); in dump()
217 itemAt(i)->dump(fd, spaces + 2, i, verbose); in dump()
272 status_t DeviceDescriptor::dump(int fd, int spaces, int index, bool verbose) const in dump() argument
278 snprintf(buffer, SIZE, "%*sDevice %d:\n", spaces, "", index+1); in dump()
281 snprintf(buffer, SIZE, "%*s- id: %2d\n", spaces, "", mId); in dump()
285 snprintf(buffer, SIZE, "%*s- tag name: %s\n", spaces, "", mTagName.string()); in dump()
290 snprintf(buffer, SIZE, "%*s- type: %-48s\n", spaces, "", deviceLiteral.c_str()); in dump()
294 snprintf(buffer, SIZE, "%*s- address: %-32s\n", spaces, "", mAddress.string()); in dump()
298 AudioPort::dump(fd, spaces, verbose); in dump()
DAudioCollections.cpp40 status_t AudioRouteVector::dump(int fd, int spaces) const in dump()
48 snprintf(buffer, SIZE, "\n%*sAudio Routes (%zu):\n", spaces, "", size()); in dump()
51 snprintf(buffer, SIZE, "%*s- Route %zu:\n", spaces, "", i + 1); in dump()
DAudioProfile.cpp185 void AudioProfile::dump(int fd, int spaces) const in dump()
196 snprintf(buffer, SIZE, "%*s- name: %s\n", spaces, "", mName.string()); in dump()
201 snprintf(buffer, SIZE, "%*s- format: %s\n", spaces, "", formatLiteral.c_str()); in dump()
205 snprintf(buffer, SIZE, "%*s- sampling rates:", spaces, ""); in dump()
216 snprintf(buffer, SIZE, "%*s- channel masks:", spaces, ""); in dump()
DAudioPort.cpp350 void AudioPort::dump(int fd, int spaces, bool verbose) const in dump() argument
357 snprintf(buffer, SIZE, "%*s- name: %s\n", spaces, "", mName.string()); in dump()
362 mProfiles.dump(fd, spaces); in dump()
365 snprintf(buffer, SIZE, "%*s- gains:\n", spaces, ""); in dump()
369 mGains[i]->dump(fd, spaces + 2, i); in dump()
DVolumeCurve.cpp79 void VolumeCurvesForStream::dump(int fd, int spaces = 0, bool curvePoints) const in dump() argument
102 spaces, "", deviceCatLiteral.c_str()); in dump()
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DAudioProfile.h122 void dump(int fd, int spaces) const;
284 void dump(int fd, int spaces) const in dump() argument
289 snprintf(buffer, SIZE, "%*s- Profiles:\n", spaces, ""); in dump()
292 snprintf(buffer, SIZE, "%*sProfile %zu:", spaces + 4, "", i); in dump()
294 itemAt(i)->dump(fd, spaces + 8); in dump()
DAudioSession.h45 status_t dump(int fd, int spaces, int index) const;
100 status_t dump(int fd, int spaces) const;
DDeviceDescriptor.h54 status_t dump(int fd, int spaces, int index, bool verbose = true) const;
87 status_t dump(int fd, const String8 &tag, int spaces = 0, bool verbose = true) const;
DAudioCollections.h41 status_t dump(int fd, int spaces) const;
DAudioRoute.h49 void dump(int fd, int spaces) const;
DAudioPatch.h32 status_t dump(int fd, int spaces, int index) const;
DAudioGain.h56 void dump(int fd, int spaces, int index) const;
DAudioPort.h139 void dump(int fd, int spaces, bool verbose = true) const;
DVolumeCurve.h142 void dump(int fd, int spaces, bool curvePoints = false) const;
/frameworks/native/services/surfaceflinger/EventLog/
DEventLogTags.logtags8 # "[A-Z][a-z][0-9]_". Do not include spaces or punctuation (the former
/frameworks/native/vulkan/
DREADME.md7 …naming and formatting, except with four-space indentation instead of two spaces. In general, any C…
/frameworks/base/docs/html/design/wear/
Dindex.jd21 main spaces centered around the core functions of <strong>Suggest</strong> and
23 spaces.</p>
/frameworks/rs/api/
Drs_object_types.spec114 These values are ORed together to specify which usages or memory spaces are
/frameworks/base/docs/html/guide/topics/renderscript/
Dadvanced.jd358 … <p>You can specify multiple memory spaces by using the bitwise <code>OR</code> operator. Doing so
360 specified memory spaces. The following example allocates memory for a custom data type
361 in both the script and vertex memory spaces:</p>
539 many memory spaces concurrently. If memory is modified in one space, you must explicitly
540 synchronize the memory, so that it is updated in all the other spaces in which it exists.
/frameworks/rs/scriptc/
Drs_object_types.rsh111 * These values are ORed together to specify which usages or memory spaces are
/frameworks/compile/mclinker/lib/Script/
DScriptScanner.ll273 /* gobble up white-spaces */

12