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

1234567891011

/frameworks/av/camera/
H A DCamera.cpp46 sp<Camera> Camera::create(const sp<::android::hardware::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
711 status = effect->ops->create(effect);
1014 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
1024 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
1036 ALOGW("Session_SetConfig Cannot create speex resampler: %s",
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp66 virtual sp<IMediaPlayer> create( function in class:android::BpMediaPlayerService
147 sp<IMediaPlayer> player = create(client, audioSessionId);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp324 sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client, function in class:android::MediaPlayerService
578 ALOGD("create Antagonizer");
672 // create the right type of player
806 // create the right type of player
1759 // We don't attempt to create a new track if we are recycling an
1761 // are switching where one is offloaded and one isn't then we create
1816 ALOGE("Unable to create audio track");
2340 if (index < 0) { // create a new entry for this UID
/frameworks/av/media/libstagefright/
H A DMediaSync.cpp42 sp<MediaSync> MediaSync::create() { function in class:android::MediaSync
102 // Check usage flags only when current output surface has been used to create input surface.
/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp147 AudioResampler* AudioResampler::create(audio_format_t format, int inChannelCount, function in class:android::AudioResampler
/frameworks/base/core/java/android/app/
H A DAlertDialog.java230 * example, via {@link #show()} or {@link #create()}).
1082 * create and display the dialog.
1084 public AlertDialog create() { method in class:AlertDialog.Builder
1106 * AlertDialog dialog = builder.create();
1111 final AlertDialog dialog = create();
H A DDialog.java267 public void create() { method in class:Dialog
490 * created (for example, via {@link #show()} or {@link #create()}).
H A DFragmentHostCallback.java215 mLoaderManager = getLoaderManager("(root)", mLoadersStarted, true /*create*/);
292 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
298 if (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.java118 public static DevicePolicyManager create(Context context) { method in class:DevicePolicyManager
2603 * to create a device PIN or Password. In this case, the storage is encrypted, but the
4827 * Called by a device owner to create a user with the specified name. The UserHandle returned
4847 * Called by a device owner to create a user with the specified name. The UserHandle returned
4893 * Called by a device owner to create a user with the specified name and a given component of
/frameworks/base/core/java/android/content/
H A DIntentFilter.java77 * <p>For information about how to create and resolve intents, read the
368 public static IntentFilter create(String action, String dataType) { method in class:IntentFilter
/frameworks/base/core/java/android/content/res/
H A DThemedResourceCache.java138 * @param create {@code true} to create an entry if one does not already
141 * empty and {@code create} was {@code false}
144 private LongSparseArray<WeakReference<T>> getThemedLocked(@Nullable Theme t, boolean create) { argument
146 if (mNullThemedEntries == null && create) {
153 if (create) {
162 if (cache == null && create) {
175 * @param create {@code true} to create an entry if one does not already
178 * empty and {@code create} wa
181 getUnthemedLocked(boolean create) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java52 * SQLiteDatabase has methods to create, delete, execute SQL commands, and
231 * Open flag: Flag for {@link #openDatabase} to create the database file if it does not
663 * @param path to database file to open and/or create
684 * @param path to database file to open and/or create
828 public static SQLiteDatabase create(CursorFactory factory) { method in class:SQLiteDatabase
2204 * 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
318 * // create timer info
322 * // create timer recording source.
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java237 public void create(int sockType) throws IOException { method in class:LocalSocketImpl
/frameworks/base/core/java/android/os/
H A DCommonClock.java126 static public CommonClock create() { method in class:CommonClock
274 * 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.java117 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.java79 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

Completed in 638 milliseconds

1234567891011