Searched defs:create (Results 1 - 25 of 146) sorted by path

123456

/frameworks/av/camera/
H A DCamera.cpp72 sp<Camera> Camera::create(const sp<ICamera>& camera) function in class:android::Camera
74 ALOGV("create");
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp36 DrmManagerClientImpl* DrmManagerClientImpl::create( function in class:DrmManagerClientImpl
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp52 extern "C" IDrmEngine* create() { function
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp36 extern "C" IDrmEngine* create() { function
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp74 int (* create)(preproc_effect_t *fx); member in struct:preproc_ops_s
659 status = effect->ops->create(effect);
972 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
982 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
994 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp68 virtual sp<IMediaPlayer> create( function in class:android::BpMediaPlayerService
175 sp<IMediaPlayer> player = create(pid, client, audioSessionId);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp251 sp<IMediaPlayer> MediaPlayerService::create(pid_t pid, const sp<IMediaPlayerClient>& client, function in class:android::MediaPlayerService
501 ALOGD("create Antagonizer");
570 // create the right type of player
691 // create the right type of player
1184 // create the right type of player
1234 // create the right type of player
1441 ALOGE("Unable to create audio track");
1682 // create ashmem heap
1963 if (index < 0) { // create a new entry for this UID
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp428 // (for which promote() is always != 0), otherwise create a new entry and Client.
497 // if no audio session id is provided, create one here
1840 track = TimedTrack::create(this, client, streamType, sampleRate, format,
2111 // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
2277 // create an NBAIO sink for the HAL output stream, and negotiate
2300 // create a MonoPipe to connect our submix to FastMixer
2315 // create a Pipe to archive a copy of FastMixer's output for dumpsys
2328 // create fast mixer and configure it initially with just one fast track for our submix
2367 // create and start the watchdog
3660 fdprintf(fd, "FastMixer unable to create te
4854 AudioFlinger::PlaybackThread::TimedTrack::create( function in class:android::AudioFlinger::PlaybackThread::TimedTrack
[all...]
H A DAudioResampler.cpp137 AudioResampler* AudioResampler::create(int bitDepth, int inChannelCount, function in class:android::AudioResampler
/frameworks/base/core/java/android/app/
H A DActivity.java137 * <p>You can also find a detailed discussion about how to create activities in the
198 * to download data from the network, it may create that thread in onCreate()
268 * create views, bind data to lists, etc. This method also
400 * must already know how to save their state and re-create themselves from
824 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
830 if (create) {
2731 TaskStackBuilder b = TaskStackBuilder.create(this);
4741 + " did not create a view.");
H A DAlertDialog.java930 public AlertDialog create() { method in class:AlertDialog.Builder
950 AlertDialog dialog = create();
H A DTaskStackBuilder.java77 public static TaskStackBuilder create(Context context) { method in class:TaskStackBuilder
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java65 public static DevicePolicyManager create(Context context, Handler handler) { method in class:DevicePolicyManager
1256 * the user to create a device PIN or Password. In this case, the storage is encrypted, but
/frameworks/base/core/java/android/content/
H A DIntentFilter.java76 * <p>For information about how to create and resolve intents, read the
327 public static IntentFilter create(String action, String dataType) { method in class:IntentFilter
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java50 * SQLiteDatabase has methods to create, delete, execute SQL commands, and
229 * Open flag: Flag for {@link #openDatabase} to create the database file if it does not
661 * @param path to database file to open and/or create
682 * @param path to database file to open and/or create
824 public static SQLiteDatabase create(CursorFactory factory) { method in class:SQLiteDatabase
2177 * This can be used to create a function that can be called from
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java209 public void create (boolean stream) throws IOException { method in class:LocalSocketImpl
/frameworks/base/core/java/android/os/
H A DCommonClock.java135 static public CommonClock create() { method in class:CommonClock
283 * restore functionality, clients should {@link #release()} their old visualizer and create
H A DCommonTimeConfig.java78 static public CommonTimeConfig create() { method in class:CommonTimeConfig
/frameworks/base/core/java/android/util/
H A DLruCache.java32 * override {@link #create}. This simplifies the calling code, allowing it to
107 * created by {@code #create}. If a value was returned, it is moved to the
127 * Attempt to create a value. This may take a long time, and the map
128 * may be different when create() returns. If a conflicting value was
129 * added to the map while create() was working, we leave that value in
133 V createdValue = create(key);
282 protected V create(K key) { method in class:LruCache
347 * Returns the number of times {@link #create(Object)} returned a value.
H A DPair.java74 public static <A, B> Pair <A, B> create(A a, B b) { method in class:Pair
H A DPrefixPrinter.java35 public static Printer create(Printer printer, String prefix) { method in class:PrefixPrinter
H A DSingleton.java29 protected abstract T create(); method in class:Singleton
34 mInstance = create();
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java539 return Gl20Renderer.create(translucent);
998 "Could not create an EGL context. eglCreateContext failed with error: " +
1610 static HardwareRenderer create(boolean translucent) { method in class:HardwareRenderer.Gl20Renderer
/frameworks/base/core/java/android/widget/
H A DTextView.java1135 tf = Typeface.create(familyName, styleIndex);
1240 tf = Typeface.create(tf, style);
3372 * Sets the Factory used to create new Editables.
3380 * Sets the Factory used to create new Spannables.
4095 * @param create If true, the extras will be created if they don't already
4101 public Bundle getInputExtras(boolean create) { argument
4102 if (mEditor == null && !create) return null;
4105 if (!create) return null;
4109 if (!create) return null;
4423 // Do not create th
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1179 * Get the KernelWakelockTimer associated with name, and create a new one if one
3986 public StopwatchTimer getSensorTimerLocked(int sensor, boolean create) { argument
3989 if (!create) {
4058 // Don't create a timer if one doesn't already exist

Completed in 279 milliseconds

123456