Searched refs:spaces (Results 1 - 22 of 22) sorted by relevance

/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioRoute.cpp27 void AudioRoute::dump(int fd, int spaces) const
33 snprintf(buffer, SIZE, "%*s- Type: %s\n", spaces, "", mType == AUDIO_ROUTE_MUX ? "Mux" : "Mix");
36 snprintf(buffer, SIZE, "%*s- Sink: %s\n", spaces, "", mSink->getTagName().string());
40 snprintf(buffer, SIZE, "%*s- Sources: \n", spaces, "");
43 snprintf(buffer, SIZE, "%*s%s \n", spaces + 4, "", mSources[i]->getTagName().string());
H A DAudioCollections.cpp40 status_t AudioRouteVector::dump(int fd, int spaces) const
48 snprintf(buffer, SIZE, "\n%*sAudio Routes (%zu):\n", spaces, "", size());
51 snprintf(buffer, SIZE, "%*s- Route %zu:\n", spaces, "", i + 1);
H A DAudioGain.cpp101 void AudioGain::dump(int fd, int spaces, int index) const argument
107 snprintf(buffer, SIZE, "%*sGain %d:\n", spaces, "", index+1);
109 snprintf(buffer, SIZE, "%*s- mode: %08x\n", spaces, "", mGain.mode);
111 snprintf(buffer, SIZE, "%*s- channel_mask: %08x\n", spaces, "", mGain.channel_mask);
113 snprintf(buffer, SIZE, "%*s- min_value: %d mB\n", spaces, "", mGain.min_value);
115 snprintf(buffer, SIZE, "%*s- max_value: %d mB\n", spaces, "", mGain.max_value);
117 snprintf(buffer, SIZE, "%*s- default_value: %d mB\n", spaces, "", mGain.default_value);
119 snprintf(buffer, SIZE, "%*s- step_value: %d mB\n", spaces, "", mGain.step_value);
121 snprintf(buffer, SIZE, "%*s- min_ramp_ms: %d ms\n", spaces, "", mGain.min_ramp_ms);
123 snprintf(buffer, SIZE, "%*s- max_ramp_ms: %d ms\n", spaces, "", mGai
[all...]
H A DAudioSession.cpp133 status_t AudioSession::dump(int fd, int spaces, int index) const argument
139 snprintf(buffer, SIZE, "%*sAudio session %d:\n", spaces, "", index+1);
141 snprintf(buffer, SIZE, "%*s- session: %2d\n", spaces, "", mSession);
143 snprintf(buffer, SIZE, "%*s- owner uid: %2d\n", spaces, "", mUid);
145 snprintf(buffer, SIZE, "%*s- input source: %d\n", spaces, "", mInputSource);
147 snprintf(buffer, SIZE, "%*s- format: %08x\n", spaces, "", mConfig.format);
149 snprintf(buffer, SIZE, "%*s- sample: %d\n", spaces, "", mConfig.sample_rate);
152 spaces, "", mConfig.channel_mask);
155 spaces, "", mIsSoundTrigger ? "true" : "false");
157 snprintf(buffer, SIZE, "%*s- open count: %d\n", spaces, "", mOpenCoun
[all...]
H A DAudioPatch.cpp38 status_t AudioPatch::dump(int fd, int spaces, int index) const argument
44 snprintf(buffer, SIZE, "%*sAudio patch %d:\n", spaces, "", index+1);
46 snprintf(buffer, SIZE, "%*s- handle: %2d\n", spaces, "", mHandle);
48 snprintf(buffer, SIZE, "%*s- audio flinger handle: %2d\n", spaces, "", mAfPatchHandle);
50 snprintf(buffer, SIZE, "%*s- owner uid: %2d\n", spaces, "", mUid);
52 snprintf(buffer, SIZE, "%*s- %d sources:\n", spaces, "", mPatch.num_sources);
58 snprintf(buffer, SIZE, "%*s- Device ID %d %s\n", spaces + 2, "",
62 snprintf(buffer, SIZE, "%*s- Mix ID %d I/O handle %d\n", spaces + 2, "",
67 snprintf(buffer, SIZE, "%*s- %d sinks:\n", spaces, "", mPatch.num_sinks);
73 snprintf(buffer, SIZE, "%*s- Device ID %d %s\n", spaces
[all...]
H A DDeviceDescriptor.cpp205 status_t DeviceVector::dump(int fd, const String8 &tag, int spaces, bool verbose) const argument
213 snprintf(buffer, SIZE, "%*s- %s devices:\n", spaces, "", tag.string());
216 itemAt(i)->dump(fd, spaces + 2, i, verbose);
271 status_t DeviceDescriptor::dump(int fd, int spaces, int index, bool verbose) const argument
277 snprintf(buffer, SIZE, "%*sDevice %d:\n", spaces, "", index+1);
280 snprintf(buffer, SIZE, "%*s- id: %2d\n", spaces, "", mId);
284 snprintf(buffer, SIZE, "%*s- tag name: %s\n", spaces, "", mTagName.string());
289 snprintf(buffer, SIZE, "%*s- type: %-48s\n", spaces, "", deviceLiteral.c_str());
293 snprintf(buffer, SIZE, "%*s- address: %-32s\n", spaces, "", mAddress.string());
297 AudioPort::dump(fd, spaces, verbos
[all...]
H A DAudioProfile.cpp185 void AudioProfile::dump(int fd, int spaces) const
196 snprintf(buffer, SIZE, "%*s- name: %s\n", spaces, "", mName.string());
201 snprintf(buffer, SIZE, "%*s- format: %s\n", spaces, "", formatLiteral.c_str());
205 snprintf(buffer, SIZE, "%*s- sampling rates:", spaces, "");
216 snprintf(buffer, SIZE, "%*s- channel masks:", spaces, "");
H A DVolumeCurve.cpp80 void VolumeCurvesForStream::dump(int fd, int spaces = 0, bool curvePoints) const
103 spaces, "", deviceCatLiteral.c_str());
H A DAudioPort.cpp350 void AudioPort::dump(int fd, int spaces, bool verbose) const argument
357 snprintf(buffer, SIZE, "%*s- name: %s\n", spaces, "", mName.string());
362 mProfiles.dump(fd, spaces);
365 snprintf(buffer, SIZE, "%*s- gains:\n", spaces, "");
369 mGains[i]->dump(fd, spaces + 2, i);
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioCollections.h41 status_t dump(int fd, int spaces) const;
H A DAudioPatch.h32 status_t dump(int fd, int spaces, int index) const;
H A DAudioRoute.h49 void dump(int fd, int spaces) const;
H A DAudioSession.h45 status_t dump(int fd, int spaces, int index) const;
100 status_t dump(int fd, int spaces) const;
H A 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;
H A DAudioGain.h56 void dump(int fd, int spaces, int index) const;
H A DAudioProfile.h122 void dump(int fd, int spaces) const;
284 void dump(int fd, int spaces) const
289 snprintf(buffer, SIZE, "%*s- Profiles:\n", spaces, "");
292 snprintf(buffer, SIZE, "%*sProfile %zu:", spaces + 4, "", i);
294 itemAt(i)->dump(fd, spaces + 8);
H A DAudioPort.h139 void dump(int fd, int spaces, bool verbose = true) const;
H A DVolumeCurve.h142 void dump(int fd, int spaces, bool curvePoints = false) const;
/frameworks/rs/api/
H A Drs_object_types.spec114 These values are ORed together to specify which usages or memory spaces are
H A Drs_graphics.spec225 memory spaces.
/frameworks/base/core/java/android/view/
H A DView.java19713 * @return a String containing (depth * 2 + 3) * 2 white spaces
19718 StringBuilder spaces = new StringBuilder((depth * 2 + 3) * 2);
19720 spaces.append(' ').append(' ');
19722 return spaces.toString();
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 367 milliseconds