Searched defs:path (Results 101 - 125 of 317) sorted by relevance

1234567891011>>

/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSimpleModelView.java102 public void loadA3DFile(String path) { argument
103 mRender.loadA3DFile(path);
/frameworks/compile/mclinker/include/mcld/MC/
H A DCommandAction.h32 const sys::fs::Path& path() const { return m_Path; } function in class:mcld::InputFileAction
63 const sys::fs::Path& path() const { return m_Path; } function in class:mcld::BitcodeAction
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp170 Path* DirIterator::path() function in class:DirIterator
177 const Path* DirIterator::path() const function in class:DirIterator
243 const Path* x_path = path();
244 const Path* y_path = y.path();
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DSingleThreadedMediaPlayerProxy.java57 public synchronized void setDataSource(String path) throws IllegalStateException, IOException { argument
58 mDelegate.setDataSource(path);
/frameworks/native/libs/input/
H A DInputDevice.cpp43 static void appendInputDeviceConfigurationFileRelativePath(String8& path, argument
45 path.append(CONFIGURATION_FILE_DIR[type]);
51 path.append(&ch, 1);
53 path.append(CONFIGURATION_FILE_EXTENSION[type]);
89 String8 path; local
90 path.setTo(getenv("ANDROID_ROOT"));
91 path.append("/usr/");
92 appendInputDeviceConfigurationFileRelativePath(path, name, type);
94 ALOGD("Probing for system provided input device configuration file: path='%s'", path
[all...]
/frameworks/native/opengl/tools/glgen2/
H A Dglgen.py20 import os.path namespace
25 # Avoid endlessly adding to the path if this module is imported multiple
27 regpath = os.path.join(sys.path[0], "registry")
28 if sys.path[1] != regpath:
29 sys.path.insert(1, regpath)
/frameworks/wilhelm/tests/examples/
H A DslesTestBassBoostPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestBassBoostPathFromFD(SLObjectItf sl, const char* path, int16_t boostStrength, bool alwaysOn) argument
119 int fd = open(path, O_RDONLY);
128 locatorUri.URI = (SLchar *) path;
256 fprintf(stdout, "Plays the sound file designated by the given path, ");
261 fprintf(stdout, "unless the --always-on option is specified before the path.\n");
271 fprintf(stdout, "Usage: \t%s [--always-on] path bass_boost_strength\n", programName);
H A DslesTestPlayFdPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size) argument
111 int fd = open(path, O_RDONLY);
113 perror(path);
198 fprintf(stdout, "Plays the sound file designated by the given path, ");
203 fprintf(stdout, "Usage: \t%s path offsetInBytes [sizeInBytes]\n", argv[0]);
H A DslesTestVirtualizerPath.cpp49 /* Play an audio path by opening a file descriptor on that path */
50 void TestVirtualizerPathFromFD( SLObjectItf sl, const char* path, int16_t virtStrength, argument
120 int fd = open(path, O_RDONLY);
129 locatorUri.URI = (SLchar *) path;
258 fprintf(stdout, "Plays the sound file designated by the given path, ");
263 fprintf(stdout, "unless the --always-on option is specified before the path.\n");
273 fprintf(stdout, "Usage: \t%s [--always-on] path virtualization_strength\n", programName);
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestPlayStreamType.cpp48 void TestStreamTypeConfiguration( SLObjectItf sl, const char* path, const SLint32 type) argument
117 uri.URI = (SLchar*) path;
H A DslesTestPlayUri2.cpp63 void TestPlayUri( SLObjectItf sl, const char* path, const char* path2) argument
126 uri.URI = (SLchar*) path;
141 /* Create the second audio player with a different path for its data source */
H A DslesTest_playStates.cpp48 void TestPlayUri( SLObjectItf sl, const char* path) argument
112 uri.URI = (SLchar*) path;
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp61 status_t SimplePlayer::setDataSource(const char *path) { argument
63 msg->setString("path", path);
115 CHECK(msg->findString("path", &mPath));
H A Dcodec.cpp71 const char *path,
80 if (extractor->setDataSource(NULL /* httpService */, path) != OK) {
69 decode( const android::sp<android::ALooper> &looper, const char *path, bool useAudio, bool useVideo, const android::sp<android::Surface> &surface) argument
H A Dmuxer.cpp54 const char *path,
63 if (extractor->setDataSource(NULL /* httpService */, path) != OK) {
64 fprintf(stderr, "unable to instantiate extractor. %s\n", path);
72 ALOGV("input file %s, output file %s", path, outputFileName);
52 muxing( const android::sp<android::ALooper> &looper, const char *path, bool useAudio, bool useVideo, const char *outputFileName, bool enableTrim, int trimStartTimeMs, int trimEndTimeMs, int rotationDegrees) argument
/frameworks/av/drm/common/
H A DDrmEngineBase.cpp30 int uniqueId, const String8* path, int action) {
31 return onGetConstraints(uniqueId, path, action);
34 DrmMetadata* DrmEngineBase::getMetadata(int uniqueId, const String8* path) { argument
35 return onGetMetadata(uniqueId, path);
51 bool DrmEngineBase::canHandle(int uniqueId, const String8& path) { argument
52 return onCanHandle(uniqueId, path);
69 String8 DrmEngineBase::getOriginalMimeType(int uniqueId, const String8& path, int fd) { argument
70 return onGetOriginalMimeType(uniqueId, path, fd);
73 int DrmEngineBase::getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType) { argument
74 return onGetDrmObjectType(uniqueId, path, mimeTyp
29 getConstraints( int uniqueId, const String8* path, int action) argument
77 checkRightsStatus(int uniqueId, const String8& path, int action) argument
91 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
97 removeRights(int uniqueId, const String8& path) argument
[all...]
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp42 DrmConstraints* DrmManagerClient::getConstraints(const String8* path, const int action) { argument
43 return mDrmManagerClientImpl->getConstraints(mUniqueId, path, action);
46 DrmMetadata* DrmManagerClient::getMetadata(const String8* path) { argument
47 return mDrmManagerClientImpl->getMetadata(mUniqueId, path);
50 bool DrmManagerClient::canHandle(const String8& path, const String8& mimeType) { argument
51 return mDrmManagerClientImpl->canHandle(mUniqueId, path, mimeType);
67 String8 DrmManagerClient::getOriginalMimeType(const String8& path, int fd) { argument
68 return mDrmManagerClientImpl->getOriginalMimeType(mUniqueId, path, fd);
71 int DrmManagerClient::getDrmObjectType(const String8& path, const String8& mimeType) { argument
72 return mDrmManagerClientImpl->getDrmObjectType( mUniqueId, path, mimeTyp
75 checkRightsStatus(const String8& path, int action) argument
90 validateAction( const String8& path, int action, const ActionDescription& description) argument
95 removeRights(const String8& path) argument
[all...]
H A DNoOpDrmManagerClientImpl.cpp35 DrmConstraints* NoOpDrmManagerClientImpl::getConstraints(int uniqueId, const String8* path, const int action) { argument
39 DrmMetadata* NoOpDrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) { argument
43 bool NoOpDrmManagerClientImpl::canHandle(int uniqueId, const String8& path, const String8& mimeType) { argument
60 String8 NoOpDrmManagerClientImpl::getOriginalMimeType(int uniqueId, const String8& path, int fd) { argument
64 int NoOpDrmManagerClientImpl::getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType) { argument
68 int NoOpDrmManagerClientImpl::checkRightsStatus(int uniqueId, const String8& path, int action) { argument
82 int uniqueId, const String8& path, int action, const ActionDescription& description) {
86 status_t NoOpDrmManagerClientImpl::removeRights(int uniqueId, const String8& path) { argument
81 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/media/libmedia/
H A DJetPlayer.cpp324 int JetPlayer::loadFromFile(const char* path) argument
326 ALOGV("JetPlayer::loadFromFile(): path=%s", path);
331 strncpy(mJetFilePath, path, sizeof(mJetFilePath));
333 mEasJetFileLoc->path = mJetFilePath;
359 mEasJetFileLoc->path = NULL;
462 ALOGE("JetPlayer dump: JET file=%s", mEasJetFileLoc->path);
H A DMediaScanner.cpp69 char * path = strtok(skipList, ","); local
71 while (path) {
72 mSkipIndex[i++] = strlen(path);
73 path = strtok(NULL, ",");
82 const char *path, MediaScannerClient &client) {
83 int pathLength = strlen(path);
93 strcpy(pathBuffer, path);
109 bool MediaScanner::shouldSkipDirectory(char *path) { argument
110 if (path && mSkipList && mSkipIndex) {
111 int len = strlen(path);
81 processDirectory( const char *path, MediaScannerClient &client) argument
131 doProcessDirectory( char *path, int pathRemaining, MediaScannerClient &client, bool noMedia) argument
172 doProcessDirectoryEntry( char *path, int pathRemaining, MediaScannerClient &client, bool noMedia, struct dirent* entry, char* fileSpot) argument
[all...]
H A Dmediarecorder.cpp267 status_t MediaRecorder::setOutputFile(const char* path) argument
269 ALOGV("setOutputFile(%s)", path);
283 status_t ret = mMediaRecorder->setOutputFile(path);
/frameworks/av/media/libmediaplayerservice/
H A DCrypto.cpp98 ALOGE("Failed to load from cached library path!");
140 bool Crypto::loadLibraryForScheme(const String8 &path, const uint8_t uuid[16]) { argument
143 ssize_t index = mLibraryPathToOpenLibraryMap.indexOfKey(path);
147 index = mLibraryPathToOpenLibraryMap.add(path, NULL);
151 mLibrary = new SharedLibrary(path);
H A DMediaRecorderClient.cpp157 status_t MediaRecorderClient::setOutputFile(const char* path) argument
159 ALOGV("setOutputFile(%s)", path);
165 return mRecorder->setOutputFile(path);
H A DMidiFile.cpp63 mFileLocator.path = NULL;
118 const char* path,
120 ALOGV("MidiFile::setDataSource url=%s", path);
129 mFileLocator.path = strdup(path);
398 if (mFileLocator.path) {
399 free((void*)mFileLocator.path);
400 mFileLocator.path = NULL;
116 setDataSource( const sp<IMediaHTTPService> & , const char* path, const KeyedVector<String8, String8> *) argument
/frameworks/av/services/audiopolicy/
H A DAudioPolicyEffects.cpp644 status_t AudioPolicyEffects::loadAudioEffectConfig(const char *path) argument
649 data = (char *)load_file(path, NULL);

Completed in 281 milliseconds

1234567891011>>