HomeSort by relevance Sort by last modified time
    Searched refs:mPatch (Results 1 - 15 of 15) sorted by null

  /frameworks/av/include/media/
AudioIoDescriptor.h 40 memset(&mPatch, 0, sizeof(struct audio_patch));
46 if (mPatch.num_sources != 0 && mPatch.num_sinks != 0) {
47 if (mPatch.sources[0].type == AUDIO_PORT_TYPE_MIX) {
50 return mPatch.sinks[0].id;
53 return mPatch.sources[0].id;
60 struct audio_patch mPatch;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioPatch.cpp 32 mPatch(*patch),
52 snprintf(buffer, SIZE, "%*s- %d sources:\n", spaces, "", mPatch.num_sources);
54 for (size_t i = 0; i < mPatch.num_sources; i++) {
55 if (mPatch.sources[i].type == AUDIO_PORT_TYPE_DEVICE) {
57 DeviceConverter::toString(mPatch.sources[i].ext.device.type, device);
59 mPatch.sources[i].id,
63 mPatch.sources[i].id, mPatch.sources[i].ext.mix.handle);
67 snprintf(buffer, SIZE, "%*s- %d sinks:\n", spaces, "", mPatch.num_sinks);
69 for (size_t i = 0; i < mPatch.num_sinks; i++)
    [all...]
  /frameworks/base/core/jni/android/graphics/
NinePatchPeeker.h 30 : mPatch(NULL)
40 free(mPatch);
45 Res_png_9patch* mPatch;
NinePatchPeeker.cpp 36 free(mPatch);
37 mPatch = patchNew;
BitmapFactory.cpp 290 if (peeker.mPatch && kRGB_565_SkColorType == prefColorType) {
427 if (peeker.mPatch != NULL) {
429 scaleNinePatchChunk(peeker.mPatch, scale, scaledWidth, scaledHeight);
432 size_t ninePatchArraySize = peeker.mPatch->serializedSize();
443 memcpy(array, peeker.mPatch, peeker.mPatchSize);
507 if (peeker.mPatch != NULL) {
509 peeker.mPatch->paddingLeft, peeker.mPatch->paddingTop,
510 peeker.mPatch->paddingRight, peeker.mPatch->paddingBottom)
    [all...]
  /frameworks/base/libs/hwui/
PatchCache.h 94 PatchDescription(): mPatch(nullptr), mBitmapWidth(0), mBitmapHeight(0),
100 mPatch(patch), mBitmapWidth(bitmapWidth), mBitmapHeight(bitmapHeight),
106 const Res_png_9patch* getPatch() const { return mPatch; }
133 const Res_png_9patch* mPatch;
PatchCache.cpp 66 uint32_t hash = JenkinsHashMix(0, android::hash_type(mPatch));
DisplayListOp.h 776 mBitmap(bitmap), mPatch(patch), mGenerationId(0), mMesh(nullptr),
792 mLocalBounds.getWidth(), mLocalBounds.getHeight(), mPatch);
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioPatch.h 35 struct audio_patch mPatch;
  /frameworks/av/media/libmedia/
IAudioFlingerClient.cpp 48 data.write(&ioDesc->mPatch, sizeof(struct audio_patch));
72 data.read(&ioDesc->mPatch, sizeof(struct audio_patch));
  /frameworks/av/services/audiopolicy/managerdefault/
AudioPolicyManager.cpp     [all...]
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.cpp 543 command->mStatus = af->createAudioPatch(&data->mPatch, &data->mHandle);
805 data->mPatch = *patch;
    [all...]
AudioPolicyService.h 385 struct audio_patch mPatch;
  /frameworks/av/services/audioflinger/
Threads.h 176 mPatch(patch), mHandle(handle) {}
182 const struct audio_patch mPatch;
464 struct audio_patch mPatch;
    [all...]
Threads.cpp 646 memset(&mPatch, 0, sizeof(struct audio_patch));
836 event->mStatus = createAudioPatch_l(&data->mPatch, &data->mHandle);
    [all...]

Completed in 3596 milliseconds