Searched refs:sources (Results 1 - 25 of 73) sorted by relevance

123

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetDebugMessageLog.java1 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
6 int[] sources,
19 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
23 java.nio.IntBuffer sources,
30 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
34 int[] sources,
43 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
47 java.nio.IntBuffer sources,
3 glGetDebugMessageLog( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLog( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
H A DglGetDebugMessageLogKHR.java1 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
6 int[] sources,
19 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
23 java.nio.IntBuffer sources,
30 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
34 int[] sources,
43 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
47 java.nio.IntBuffer sources,
3 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
/frameworks/base/media/java/android/media/
H A DAudioPatch.java21 * An AudioPatch describes a connection between audio sources and audio sinks.
36 AudioPatch(AudioHandle patchHandle, AudioPortConfig[] sources, AudioPortConfig[] sinks) { argument
38 mSources = sources;
43 * Retrieve the list of sources of this audio patch.
45 public AudioPortConfig[] sources() { method in class:AudioPatch
H A DAudioRecordingConfiguration.java112 // matches the sources that return false in MediaRecorder.isSystemOnlyAudioSource(source)
128 // documented return values match the sources that return false
203 final AudioPortConfig[] sources = patch.sources();
204 if ((sources != null) && (sources.length > 0)) {
205 // not supporting multiple sources, so just look at the first source
206 final int devId = sources[0].port().id();
/frameworks/av/include/media/
H A DAudioIoDescriptor.h49 if (mPatch.sources[0].type == AUDIO_PORT_TYPE_MIX) {
55 return mPatch.sources[0].id;
/frameworks/av/media/libaudioclient/include/media/
H A DAudioIoDescriptor.h49 if (mPatch.sources[0].type == AUDIO_PORT_TYPE_MIX) {
55 return mPatch.sources[0].id;
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioRoute.h41 void setSources(const AudioPortVector &sources) { mSources = sources; } argument
/frameworks/compile/libbcc/lib/
H A DRSScriptGroupFusion.h35 /// @param sources The Sources containing the kernels.
42 const std::vector<Source *>& sources,
H A DRSScriptGroupFusion.cpp91 int getFusedFuncSig(const std::vector<Source*>& sources, argument
98 for (const Source* source : sources) {
134 const std::vector<Source*>& sources,
138 int error = getFusedFuncSig(sources, slots, signature);
144 const Function* firstF = getFunction(M, sources.front(), slots.front(), nullptr);
165 const Function* lastF = getFunction(M, sources.back(), slots.back(), nullptr);
177 const std::vector<Source *>& sources,
181 bccAssert(sources.size() == slots.size() && "sources and slots differ in size");
186 getFusedFuncType(Context, sources, slot
133 getFusedFuncType(bcc::BCCContext& Context, const std::vector<Source*>& sources, const std::vector<int>& slots, Module* M, uint32_t* signature) argument
176 fuseKernels(bcc::BCCContext& Context, const std::vector<Source *>& sources, const std::vector<int>& slots, const std::string& fusedName, Module* mergedModule) argument
[all...]
H A DRSCompilerDriver.cpp306 const std::vector<Source*>& sources,
314 for (Source* source : sources) {
331 for (Source* source : sources) {
371 sourcesToFuse.push_back(sources[p.first]);
388 Source* source = sources[p.first];
303 buildScriptGroup( BCCContext& Context, const char* pOutputFilepath, const char* pRuntimePath, const char* pRuntimeRelaxedPath, bool dumpIR, const char* buildChecksum, const std::vector<Source*>& sources, const std::list<std::list<std::pair<int, int>>>& toFuse, const std::list<std::string>& fused, const std::list<std::list<std::pair<int, int>>>& invokes, const std::list<std::string>& invokeBatchNames) argument
/frameworks/av/services/audioflinger/
H A DPatchPanel.cpp159 // limit number of sources to 1 for now or 2 sources for special cross hw module case.
160 // only the audio policy manager can request a patch creation with 2 sources.
185 if ((removedPatch->mAudioPatch.sources[0].type == AUDIO_PORT_TYPE_DEVICE) &&
186 ((patch->sources[0].type != AUDIO_PORT_TYPE_DEVICE) ||
187 (removedPatch->mAudioPatch.sources[0].ext.device.hw_module !=
188 patch->sources[0].ext.device.hw_module))) {
189 hwModule = removedPatch->mAudioPatch.sources[0].ext.device.hw_module;
220 switch (patch->sources[0].type) {
222 audio_module_handle_t srcModule = patch->sources[
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPatch.cpp51 snprintf(buffer, SIZE, "%*s- %d sources:\n", spaces, "", mPatch.num_sources);
54 if (mPatch.sources[i].type == AUDIO_PORT_TYPE_DEVICE) {
56 deviceToString(mPatch.sources[i].ext.device.type, device);
58 mPatch.sources[i].id,
62 mPatch.sources[i].id, mPatch.sources[i].ext.mix.handle);
99 patch->mPatch.sources[0].id, patch->mPatch.sinks[0].id);
137 if (patch->mPatch.sources[srcIndex].type == AUDIO_PORT_TYPE_DEVICE &&
138 patch->mPatch.sources[srcIndex].ext.device.type == AUDIO_DEVICE_IN_STUB) {
/frameworks/av/drm/mediacas/plugins/clearkey/
H A DAndroid.mk52 $(call local-generated-sources-dir)/proto/$(LOCAL_PATH)
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java145 * @param sources Source items to be filtered.
154 @NonNull List<T> sources,
167 final int sourceSize = sources.size();
169 final Locale locale = extractor.get(sources.get(i));
208 dest.add(sources.get(entry.mIndex));
153 filterByLanguage( @onNull List<T> sources, @NonNull LocaleExtractor<T> extractor, @NonNull LocaleList preferredLocales, @NonNull ArrayList<T> dest) argument
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DVideoPauseTracker.java30 * sources.
35 * {@link ImsVideoCallProviderWrapper#resumeVideo(int, int)} methods. As a result, multiple sources
55 * Tracks the current sources of pause requests.
182 * Returns a comma separated list of sources.
184 * @param sources The sources.
185 * @return Comma separated list of sources.
187 private String sourcesToString(Collection<Integer> sources) { argument
189 return sources.stream()
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_frame.cpp206 std::vector<const GLFrame*> sources; local
207 sources.push_back(frame);
208 GetIdentity()->Process(sources, this);
377 std::vector<const GLFrame*> sources; local
378 sources.push_back(this);
385 GetIdentity()->Process(sources, &target);
/frameworks/base/packages/StatementService/src/com/android/statementservice/
H A DDirectStatementService.java105 * A String ArrayList bundle entry that stores sources that can't be verified.
191 List<String> sources = extras.getStringArrayList(EXTRA_SOURCE_ASSET_DESCRIPTORS);
200 if (sources == null) {
217 new IsAssociatedCallable(sources, target, relation, resultReceiver), TAG));
231 public IsAssociatedCallable(List<String> sources, String target, String relation, argument
233 mSources = sources;
/frameworks/rs/rsov/compiler/spirit/
H A DAndroid.mk34 SPIRV_TOOLS_PATH := $(NDK_PREBUILTS)/sources/third_party/shaderc/third_party/spirv-tools
57 PATH_TO_GENERATED := $(local-generated-sources-dir)
101 PATH_TO_GENERATED := $(local-generated-sources-dir)
140 PATH_TO_GENERATED := $(local-generated-sources-dir)
223 PATH_TO_GENERATED := $(local-generated-sources-dir)
/frameworks/base/packages/SystemUI/shared/tests/
H A DAndroid.mk32 # Add local path sources as well as shared lib sources
/frameworks/base/tools/aapt2/process/
H A DSymbolTable.h77 // looking up resources from a set of sources.
116 // symbol sources.
124 const ResourceName& name, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
127 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) = 0;
140 const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
142 ResourceId id, const std::vector<std::unique_ptr<ISymbolSource>>& sources) override;
/frameworks/base/cmds/incident/
H A DAndroid.mk35 gen_src_dir := $(local-generated-sources-dir)
/frameworks/av/include/media/audiohal/
H A DDeviceHalInterface.h95 const struct audio_port_config *sources,
/frameworks/av/media/libaudiohal/include/media/audiohal/
H A DDeviceHalInterface.h95 const struct audio_port_config *sources,
/frameworks/compile/libbcc/include/bcc/
H A DRSCompilerDriver.h153 const std::vector<Source*>& sources,
/frameworks/av/services/audiopolicy/tests/
H A Daudiopolicymanager_tests.cpp153 patch.sources[0].role = AUDIO_PORT_ROLE_SINK;
159 patch.sources[0].role = AUDIO_PORT_ROLE_SOURCE;
175 auto& src = patch.sources[0];

Completed in 591 milliseconds

123