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

123456789

/frameworks/av/camera/
H A DCamera.cpp46 sp<Camera> Camera::create(const sp<ICamera>& camera) function in class:android::Camera
48 ALOGV("create");
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp38 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.cpp72 virtual sp<IMediaPlayer> create( function in class:android::BpMediaPlayerService
218 sp<IMediaPlayer> player = create(client, audioSessionId);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp332 sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client, function in class:android::MediaPlayerService
592 ALOGD("create Antagonizer");
664 // create the right type of player
788 // create the right type of player
1310 // create the right type of player
1365 // create the right type of player
1654 // We don't attempt to create a new track if we are recycling an
1656 // are switching where one is offloaded and one isn't then we create
1700 ALOGE("Unable to create audio track");
2283 if (index < 0) { // create
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp149 AudioResampler* AudioResampler::create(audio_format_t format, int inChannelCount, function in class:android::AudioResampler
H A DTracks.cpp1132 AudioFlinger::PlaybackThread::TimedTrack::create( function in class:android::AudioFlinger::PlaybackThread::TimedTrack
2014 mResampler = AudioResampler::create(AUDIO_FORMAT_PCM_16_BIT,
/frameworks/base/core/java/android/app/
H A DActivity.java155 * <p>You can also find a detailed discussion about how to create activities in the
216 * to download data from the network, it may create that thread in onCreate()
286 * create views, bind data to lists, etc. This method also
418 * must already know how to save their state and re-create themselves from
863 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
869 if (create) {
3073 TaskStackBuilder b = TaskStackBuilder.create(this);
H A DAlertDialog.java163 * example, via {@link #show()} or {@link #create()}).
972 public AlertDialog create() { method in class:AlertDialog.Builder
992 AlertDialog dialog = create();
H A DDialog.java248 public void create() { method in class:Dialog
474 * created (for example, via {@link #show()} or {@link #create()}).
H A DTaskStackBuilder.java78 public static TaskStackBuilder create(Context context) { method in class:TaskStackBuilder
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java92 public static DevicePolicyManager create(Context context, Handler handler) { method in class:DevicePolicyManager
1743 * the user to create a device PIN or Password. In this case, the storage is encrypted, but
2998 * Called by a device owner to create a user with the specified name. The UserHandle returned
3012 Log.w(TAG, "Could not create a user", re);
3018 * Called by a device owner to create a user with the specified name. The UserHandle returned
3047 Log.w(TAG, "Could not create a user", re);
/frameworks/base/core/java/android/content/
H A DIntentFilter.java76 * <p>For information about how to create and resolve intents, read the
344 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
826 public static SQLiteDatabase create(CursorFactory factory) { method in class:SQLiteDatabase
2188 * This can be used to create a function that can be called from
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiTvClient.java52 /* package */ static HdmiTvClient create(IHdmiControlService service) { method in class:HdmiTvClient
290 * // create timer info
294 * // create timer recording source.
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java235 public void create (int sockType) throws IOException { method in class:LocalSocketImpl
/frameworks/base/core/java/android/os/
H A DCommonClock.java127 static public CommonClock create() { method in class:CommonClock
275 * restore functionality, clients should {@link #release()} their old visualizer and create
H A DCommonTimeConfig.java77 static public CommonTimeConfig create() { method in class:CommonTimeConfig
/frameworks/base/core/java/android/printservice/
H A DPrintServiceInfo.java104 public static PrintServiceInfo create(ResolveInfo resolveInfo, Context context) { method in class:PrintServiceInfo
/frameworks/base/core/java/android/util/
H A DLruCache.java32 * override {@link #create}. This simplifies the calling code, allowing it to
106 * created by {@code #create}. If a value was returned, it is moved to the
126 * Attempt to create a value. This may take a long time, and the map
127 * may be different when create() returns. If a conflicting value was
128 * added to the map while create() was working, we leave that value in
132 V createdValue = create(key);
281 protected V create(K key) { method in class:LruCache
346 * 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 DRange.java77 public static <T extends Comparable<? super T>> Range<T> create(final T lower, final T upper) { method in class:Range
217 return Range.create(
247 return Range.create(
285 return Range.create(
315 return Range.create(
326 * equivalent to {@code extend(Range.create(value, value))}.</p>

Completed in 378 milliseconds

123456789