Searched defs:pFormat (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64ELFDynamic.cpp26 void AArch64ELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) argument
30 if (pFormat.hasGOT())
34 if (pFormat.hasGOTPLT())
39 void AArch64ELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) argument
43 if (pFormat.hasGOT())
44 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
47 if (pFormat.hasGOTPLT())
48 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFDynamic.cpp25 void ARMELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) argument
28 if (pFormat.hasGOT())
32 void ARMELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) argument
35 if (pFormat.hasGOT())
36 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonELFDynamic.cpp24 void HexagonELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) argument
27 if (pFormat.hasGOTPLT())
31 void HexagonELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) argument
34 if (pFormat.hasGOTPLT())
35 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86ELFDynamic.cpp25 void X86ELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) argument
28 if (pFormat.hasGOTPLT())
32 void X86ELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) argument
35 if (pFormat.hasGOTPLT())
36 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOTPLT().addr());
/frameworks/compile/mclinker/lib/Script/
H A DOutputFormatCmd.cpp17 OutputFormatCmd::OutputFormatCmd(const std::string& pFormat) argument
20 m_FormatList.push_back(pFormat);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsELFDynamic.cpp28 void MipsELFDynamic::reserveTargetEntries(const ELFFileFormat& pFormat) argument
30 if (pFormat.hasGOT())
40 if (pFormat.hasGOTPLT())
44 void MipsELFDynamic::applyTargetEntries(const ELFFileFormat& pFormat) argument
46 if (pFormat.hasGOT())
47 applyOne(llvm::ELF::DT_PLTGOT, pFormat.getGOT().addr());
52 applyOne(llvm::ELF::DT_MIPS_LOCAL_GOTNO, getLocalGotNum(pFormat));
53 applyOne(llvm::ELF::DT_MIPS_SYMTABNO, getSymTabNum(pFormat));
54 applyOne(llvm::ELF::DT_MIPS_GOTSYM, getGotSym(pFormat));
56 if (pFormat
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DELFDynamic.cpp98 void ELFDynamic::reserveEntries(const ELFFileFormat& pFormat) argument
107 if (pFormat.hasInit())
110 if (pFormat.hasFini())
113 if (pFormat.hasPreInitArray()) {
118 if (pFormat.hasInitArray()) {
123 if (pFormat.hasFiniArray()) {
128 if (pFormat.hasHashTab())
132 if (pFormat.hasGNUHashTab())
135 if (pFormat.hasDynSymTab()) {
140 if (pFormat
203 applyEntries(const ELFFileFormat& pFormat) argument
[all...]
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp96 audio_format_t* pFormat,
114 *pFormat = (audio_format_t)reply.readInt32();
122 int* pNumChannels, audio_format_t* pFormat,
137 *pFormat = (audio_format_t)reply.readInt32();
91 decode( const sp<IMediaHTTPService> &httpService, const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat, const sp<IMemoryHeap>& heap, size_t *pSize) argument
121 decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat, const sp<IMemoryHeap>& heap, size_t *pSize) argument
H A Dmediaplayer.cpp843 audio_format_t* pFormat,
851 status = service->decode(httpService, url, pSampleRate, pNumChannels, pFormat, heap, pSize);
868 audio_format_t* pFormat,
876 pNumChannels, pFormat, heap, pSize);
838 decode( const sp<IMediaHTTPService> &httpService, const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat, const sp<IMemoryHeap>& heap, size_t *pSize) argument
866 decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat, const sp<IMemoryHeap>& heap, size_t *pSize) argument
/frameworks/av/services/audiopolicy/
H A DAudioPolicyClientImplLegacy.cpp68 audio_format_t *pFormat,
80 if (pSamplingRate == NULL || pFormat == NULL || pChannelMask == NULL ||
86 config.format = *pFormat;
96 *pFormat = config.format;
109 audio_format_t *pFormat,
114 return open_output((audio_module_handle_t)0, pDevices, pSamplingRate, pFormat, pChannelMask,
122 audio_format_t *pFormat,
128 return open_output(module, pDevices, pSamplingRate, pFormat, pChannelMask,
179 audio_format_t *pFormat,
188 if (pSamplingRate == NULL || pFormat
65 open_output(audio_module_handle_t module, audio_devices_t *pDevices, uint32_t *pSamplingRate, audio_format_t *pFormat, audio_channel_mask_t *pChannelMask, uint32_t *pLatencyMs, audio_output_flags_t flags, const audio_offload_info_t *offloadInfo) argument
106 aps_open_output(void *service __unused, audio_devices_t *pDevices, uint32_t *pSamplingRate, audio_format_t *pFormat, audio_channel_mask_t *pChannelMask, uint32_t *pLatencyMs, audio_output_flags_t flags) argument
118 aps_open_output_on_module(void *service __unused, audio_module_handle_t module, audio_devices_t *pDevices, uint32_t *pSamplingRate, audio_format_t *pFormat, audio_channel_mask_t *pChannelMask, uint32_t *pLatencyMs, audio_output_flags_t flags, const audio_offload_info_t *offloadInfo) argument
176 open_input(audio_module_handle_t module, audio_devices_t *pDevices, uint32_t *pSamplingRate, audio_format_t *pFormat, audio_channel_mask_t *pChannelMask) argument
215 aps_open_input(void *service __unused, audio_devices_t *pDevices, uint32_t *pSamplingRate, audio_format_t *pFormat, audio_channel_mask_t *pChannelMask, audio_in_acoustics_t acoustics __unused) argument
225 aps_open_input_on_module(void *service __unused, audio_module_handle_t module, audio_devices_t *pDevices, uint32_t *pSamplingRate, audio_format_t *pFormat, audio_channel_mask_t *pChannelMask) argument
[all...]
/frameworks/wilhelm/src/
H A Ddata.c345 static SLresult checkDataFormat(const char *name, void *pFormat, DataFormat *pDataFormat, argument
352 if (NULL == pFormat) {
355 formatType = *(SLuint32 *)pFormat;
359 ((SLAndroidDataFormat_PCM_EX *)pFormat)->representation;
374 pDataFormat->mPCM = *(SLDataFormat_PCM *)pFormat;
533 pDataFormat->mMIME = *(SLDataFormat_MIME *)pFormat;
554 pDataFormat->mRawImage = *(XADataFormat_RawImage *)pFormat;
798 pDataLocatorFormat->u.mSource.pFormat = &pDataLocatorFormat->mFormat;
826 // Per the spec, the pFormat field is ignored in some cases
828 myDataSrc.pFormat
[all...]
H A Ddata.h48 DataFormat *pFormat; member in struct:__anon1588::__anon1589::__anon1590
58 #define SL_DATAFORMAT_NULL 0 // application specified a NULL value for pFormat
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1289 audio_format_t* pFormat,
1340 *pFormat = cache->format();
1342 *pSize, *pSampleRate, *pNumChannels, *pFormat);
1352 audio_format_t* pFormat,
1395 *pFormat = cache->format();
1397 *pSize, *pSampleRate, *pNumChannels, *pFormat);
1284 decode( const sp<IMediaHTTPService> &httpService, const char* url, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat, const sp<IMemoryHeap>& heap, size_t *pSize) argument
1350 decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, audio_format_t* pFormat, const sp<IMemoryHeap>& heap, size_t *pSize) argument
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h368 void *pFormat; member in struct:SLDataSource_
374 void *pFormat; member in struct:SLDataSink_
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h294 void * pFormat; member in struct:XADataSink_
299 void * pFormat; member in struct:XADataSource_

Completed in 6981 milliseconds