Searched defs:load (Results 1 - 25 of 45) sorted by path

12

/frameworks/av/media/libmedia/
H A DSoundPool.cpp206 int SoundPool::load(const char* path, int priority __unused) function in class:android::SoundPool
208 ALOGV("load: path=%s, priority=%d", path, priority);
216 int SoundPool::load(int fd, int64_t offset, int64_t length, int priority __unused) function in class:android::SoundPool
218 ALOGV("load: fd=%d, offset=%" PRId64 ", length=%" PRId64 ", priority=%d",
520 ALOGE("Unable to load sample: %s", mUrl);
/frameworks/av/media/libstagefright/rtsp/
H A DSDPLoader.cpp51 void SDPLoader::load(const char *url, const KeyedVector<String8, String8> *headers) { function in class:android::SDPLoader
/frameworks/base/core/java/android/gesture/
H A DGestureLibraries.java90 public boolean load() { method in class:GestureLibraries.FileGestureLibrary
95 mStore.load(new FileInputStream(file), true);
98 Log.d(LOG_TAG, "Could not load the gesture library from " + mPath, e);
100 Log.d(LOG_TAG, "Could not load the gesture library from " + mPath, e);
126 public boolean load() { method in class:GestureLibraries.ResourceGestureLibrary
132 mStore.load(in, true);
135 Log.d(LOG_TAG, "Could not load the gesture library from raw resource " +
H A DGestureLibrary.java32 public abstract boolean load(); method in class:GestureLibrary
H A DGestureStore.java274 public void load(InputStream stream) throws IOException { method in class:GestureStore
275 load(stream, false);
278 public void load(InputStream stream, boolean closeStream) throws IOException { method in class:GestureStore
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java332 public static KeyCharacterMap load(int deviceId) { method in class:KeyCharacterMap
339 "Could not load key character map for device " + deviceId);
728 * Thrown by {@link KeyCharacterMap#load} when a key character map could not be loaded.
H A DPointerIcon.java216 public PointerIcon load(Context context) { method in class:PointerIcon
245 * @see #load(Context)
267 * @see #load(Context)
281 * @see #load(Context)
295 * @see #load(Context)
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsHelper.java211 load();
218 load();
964 private void load() { method in class:BatteryStatsHelper
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java393 * @param r The Reader to load properties from
397 public void load(Reader r) throws IOException { method in class:TypedProperties
/frameworks/base/core/jni/
H A Dandroid_view_PointerIcon.cpp37 jmethodID load; member in struct:android::__anon867
64 gPointerIconClassInfo.load, contextObj);
144 GET_METHOD_ID(gPointerIconClassInfo.load, gPointerIconClassInfo.clazz,
145 "load", "(Landroid/content/Context;)Landroid/view/PointerIcon;");
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp5874 status_t err = group->dynamicRefTable.load((const ResTable_lib_header*) chunk);
5911 status_t DynamicRefTable::load(const ResTable_lib_header* const header) function in class:android::DynamicRefTable
/frameworks/base/libs/hwui/
H A DMatrix.cpp152 void Matrix4::load(const float* v) { function in class:android::uirenderer::Matrix4
157 void Matrix4::load(const Matrix4& v) { function in class:android::uirenderer::Matrix4
162 void Matrix4::load(const SkMatrix& v) { function in class:android::uirenderer::Matrix4
/frameworks/base/media/java/android/media/
H A DMediaActionSound.java121 public synchronized void load(int soundName) { method in class:MediaActionSound
127 mSoundPool.load(SOUND_FILES[soundName], 1);
148 * <p>If the sound has not been loaded by {@link #load} before calling play,
149 * play will load the sound at the cost of some additional latency before
168 mSoundPool.load(SOUND_FILES[soundName], 1);
185 Log.e(TAG, "Unable to load sound for playback (status: " +
H A DSoundPool.java49 * to ship with compressed streams without having to suffer the CPU load
90 * through the list of sounds calling the appropriate SoundPool.load()
209 public int load(String path, int priority) { method in class:SoundPool
210 return mImpl.load(path, priority);
216 * Note that the extension is dropped. For example, if you want to load
228 public int load(Context context, int resId, int priority) { method in class:SoundPool
229 return mImpl.load(context, resId, priority);
240 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool
241 return mImpl.load(afd, priority);
258 public int load(FileDescripto method in class:SoundPool
482 public int load(String path, int priority); method in interface:SoundPool.SoundPoolDelegate
483 public int load(Context context, int resId, int priority); method in interface:SoundPool.SoundPoolDelegate
484 public int load(AssetFileDescriptor afd, int priority); method in interface:SoundPool.SoundPoolDelegate
485 public int load( method in interface:SoundPool.SoundPoolDelegate
544 public int load(String path, int priority) method in class:SoundPool.SoundPoolImpl
565 public int load(Context context, int resId, int priority) { method in class:SoundPool.SoundPoolImpl
579 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool.SoundPoolImpl
591 public int load(FileDescriptor fd, long offset, long length, int priority) { method in class:SoundPool.SoundPoolImpl
728 public int load(String path, int priority) { method in class:SoundPool.SoundPoolStub
732 public int load(Context context, int resId, int priority) { method in class:SoundPool.SoundPoolStub
736 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool.SoundPoolStub
740 public int load(FileDescriptor fd, long offset, long length, int priority) { method in class:SoundPool.SoundPoolStub
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DMatrix2f.java92 * @param src matrix to load the values from
94 public void load(Matrix2f src) { method in class:Matrix2f
155 load(tmp);
H A DMatrix3f.java98 * @param src matrix to load the values from
100 public void load(Matrix3f src) { method in class:Matrix3f
232 load(tmp);
H A DMatrix4f.java108 * @param src matrix to load the values from
110 public void load(Matrix4f src) { method in class:Matrix4f
117 * @param src matrix to load the values from
120 public void load(Matrix3f src) { method in class:Matrix4f
348 load(m1);
359 load(tmp);
/frameworks/base/services/core/java/com/android/server/display/
H A DPersistentDataStore.java172 load();
185 private void load() { method in class:PersistentDataStore
201 Slog.w(TAG, "Failed to load display manager persistent store data.", ex);
204 Slog.w(TAG, "Failed to load display manager persistent store data.", ex);
/frameworks/base/services/core/java/com/android/server/input/
H A DPersistentDataStore.java191 load();
204 private void load() { method in class:PersistentDataStore
220 Slog.w(InputManagerService.TAG, "Failed to load input manager persistent store data.", ex);
223 Slog.w(InputManagerService.TAG, "Failed to load input manager persistent store data.", ex);
/frameworks/base/services/core/java/com/android/server/tv/
H A DPersistentDataStore.java147 load();
157 private void load() { method in class:PersistentDataStore
173 Slog.w(TAG, "Failed to load tv input manager persistent store data.", ex);
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDeviceOwner.java85 static DeviceOwner load() { method in class:DeviceOwner
/frameworks/base/test-runner/src/android/test/
H A DSimpleCache.java25 protected abstract V load(K key); method in class:SimpleCache
31 V value = load(key);
/frameworks/base/test-runner/src/junit/runner/
H A DReloadingTestSuiteLoader.java9 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:ReloadingTestSuiteLoader
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTexture2D.java74 void load() { method in class:Texture2D
99 load();
H A DTextureBase.java35 tex.load();
51 abstract void load(); method in class:TextureBase

Completed in 525 milliseconds

12