Searched defs:list (Results 26 - 50 of 53) sorted by relevance

123

/frameworks/av/media/libmedia/
H A DIOMX.cpp70 virtual status_t listNodes(List<ComponentInfo> *list) { argument
71 list->clear();
79 list->push_back(ComponentInfo());
80 ComponentInfo &info = *--list->end();
430 List<ComponentInfo> list; local
431 listNodes(&list);
433 reply->writeInt32(list.size());
434 for (List<ComponentInfo>::iterator it = list.begin();
435 it != list.end(); ++it) {
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp39 virtual status_t listNodes(List<ComponentInfo> *list);
162 status_t MuxOMX::listNodes(List<ComponentInfo> *list) { argument
169 return mLocalOMX->listNodes(list);
H A DNuCachedSource2.cpp59 void freePages(List<Page *> *list);
74 void PageCache::freePages(List<Page *> *list) { argument
75 List<Page *>::iterator it = list->begin();
76 while (it != list->end()) {
H A DOMXCodec.cpp189 const MediaCodecList *list = MediaCodecList::getInstance(); local
190 if (list == NULL) {
197 list->findCodecByType(mime, createEncoder, index);
205 const char *componentName = list->getCodecName(matchIndex);
223 entry->mQuirks = getComponentQuirks(list, matchIndex);
237 const MediaCodecList *list, size_t index) {
239 if (list->codecHasQuirk(
243 if (list->codecHasQuirk(
247 if (list->codecHasQuirk(
257 const MediaCodecList *list local
236 getComponentQuirks( const MediaCodecList *list, size_t index) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_SELinux.cpp331 * Purpose: Gets a list of the SELinux boolean names.
342 char **list; local
347 if (security_get_boolean_names(&list, &len) == -1)
354 obj = env->NewStringUTF(list[i]);
357 free(list[i]);
359 free(list);
H A Dandroid_util_Binder.cpp212 * The GetJavaVM function isn't on the "approved" list of JNI calls
389 JavaDeathRecipient(JNIEnv* env, jobject object, const sp<DeathRecipientList>& list) argument
391 mObjectWeak(NULL), mList(list)
394 // The list holds a strong reference to this object.
395 LOGDEATH("Adding JDR %p to DRL %p", this, list.get());
396 list->add(this);
426 sp<DeathRecipientList> list = mList.promote(); local
427 if (list != NULL) {
428 LOGDEATH("Removing JDR %p from DRL %p", this, list.get());
429 list
1117 DeathRecipientList* list = (DeathRecipientList*) local
1152 DeathRecipientList* list = (DeathRecipientList*) local
[all...]
/frameworks/base/services/java/com/android/server/
H A DIntentResolverOld.java271 if (debug) Slog.v(TAG, "Typed Action list: " + firstTypeCut);
281 if (debug) Slog.v(TAG, "Scheme list: " + schemeCut);
289 if (debug) Slog.v(TAG, "Action list: " + firstTypeCut);
312 Slog.v(TAG, "Final result list:");
322 * list. Mainly intended to prevent adding multiple filters for the
484 private final boolean remove_all_objects(List<F> list, Object object) { argument
485 if (list != null) {
486 int N = list.size();
488 if (list.get(idx) == object) {
489 list
[all...]
H A DTextServicesManagerService.java174 ArrayList<SpellCheckerInfo> list, HashMap<String, SpellCheckerInfo> map,
176 list.clear();
201 list.add(sci);
210 Slog.d(TAG, "buildSpellCheckerMapLocked: " + list.size() + "," + map.size());
173 buildSpellCheckerMapLocked(Context context, ArrayList<SpellCheckerInfo> list, HashMap<String, SpellCheckerInfo> map, TextServicesSettings settings) argument
H A DAlarmManagerService.java306 // iterator over the list removing any it where the intent match
330 // iterator over the list removing any it where the intent match
353 // iterator over the list removing any it where the intent match
402 // Display the list of alarms for this alarm type
522 private static final void dumpAlarmList(PrintWriter pw, ArrayList<Alarm> list, argument
524 for (int i=list.size()-1; i>=0; i--) {
525 Alarm a = list.get(i);
577 // remove the alarm from the list
580 // if it repeats queue it up to be read-added to the list
/frameworks/base/services/java/com/android/server/am/
H A DServiceRecord.java161 void dumpStartList(PrintWriter pw, String prefix, List<StartItem> list, long now) { argument
162 final int N = list.size();
164 StartItem si = list.get(i);
H A DActivityStack.java161 * The first entry in the list is the least recently used.
745 + " being launched, but already in LRU list");
1513 // at the top of the LRU list, since we know we will be needing it
1958 // We are going to move through the history list so that we can look
3352 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
3353 list.add(new ResultInfo(resultWho, requestCode,
3355 r.app.thread.scheduleSendResult(r.appToken, list);
3728 * list, or false if it is still in the list and will be removed later.
3737 * list, o
4156 removeHistoryRecordsForAppLocked(ArrayList list, ProcessRecord app, String listName) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp221 * b. Create a HWC list with room to specify a prandomly
226 * of the layers in the HWC list.
228 * d. Prandomly fill in the HWC list with handles
231 * e. Pass the populated list to the HWC prepare call.
233 * f. Pass the populated list to the HWC set call.
412 hwc_display_contents_1_t *list; local
413 list = hwcTestCreateLayerList(testRandMod(frames.size()) + 1);
414 if (list == NULL) {
421 selectedFrames = vectorRandSelect(frames, list->numHwLayers);
428 for (unsigned int n1 = 0; n1 < list
[all...]
H A DhwcTestLib.cpp399 * Dynamically creates layer list with numLayers worth
404 hwc_display_contents_1_t *list; local
407 if ((list = (hwc_display_contents_1_t *) calloc(1, size)) == NULL) {
410 list->flags = HWC_GEOMETRY_CHANGED;
411 list->numHwLayers = numLayers;
413 return list;
420 void hwcTestFreeLayerList(hwc_display_contents_1_t *list) argument
422 free(list);
425 // Display the settings of the layer list pointed to by list
426 hwcTestDisplayList(hwc_display_contents_1_t *list) argument
497 hwcTestDisplayListPrepareModifiable(hwc_display_contents_1_t *list) argument
525 hwcTestDisplayListHandles(hwc_display_contents_1_t *list) argument
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.cpp75 sensor_t const* list; local
76 ssize_t count = dev.getSensorList(&list);
87 registerSensor( new HardwareSensor(list[i]) );
88 switch (list[i].type) {
98 virtualSensorsNeeds &= ~(1<<list[i].type);
115 registerVirtualSensor( new GravitySensor(list, count) );
116 registerVirtualSensor( new LinearAccelerationSensor(list, count) );
120 registerVirtualSensor( new CorrectedGyroSensor(list, count) );
123 // build the sensor list returned to users
135 // HAL supplied one form the user list
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h91 // commits the list
103 // create a work list for numLayers layer. sets HWC_GEOMETRY_CHANGED.
157 * Interface used to implement an iterator to a list
173 * Iterator through a HWCLayer list.
216 // Returns an iterator to the beginning of the layer list
219 // Returns an iterator to the end of the layer list
290 capacity(0), list(NULL),
293 free(list);
305 hwc_display_contents_1* list; member in struct:android::HWComposer::DisplayData
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java103 public CommandQueue(Callbacks callbacks, StatusBarIconList list) { argument
105 mList = list;
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp192 status_t OMX::listNodes(List<ComponentInfo> *list) { argument
193 list->clear();
199 list->push_back(ComponentInfo());
200 ComponentInfo &info = *--list->end();
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp901 List<IOMX::ComponentInfo> list; local
902 omx->listNodes(&list);
904 for (List<IOMX::ComponentInfo>::iterator it = list.begin();
905 it != list.end(); ++it) {
/frameworks/base/core/java/android/text/
H A DTextUtils.java268 * Returns list of multiple {@link CharSequence} joined into a single
273 public static CharSequence join(Iterable<CharSequence> list) { argument
275 return join(delimiter, list);
1604 * Does a comma-delimited list 'delimitedString' contain a certain item?
1642 * @param spans A list of spans retrieved using {@link Spanned#getSpans(int, int, Class)} from
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1081 private static String combineStrings(int[] list, String separator) { argument
1082 int listLength = list.length;
1089 return Integer.toString(list[0]);
1096 String[] stringList = new String[list.length];
1098 stringList[i] = Integer.toString(list[i]);
1108 sb.append(list[i]);
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp258 MtpObjectHandleList* list = new MtpObjectHandleList();
262 list->push(handles[i]);
267 return list;
287 MtpObjectFormatList* list = new MtpObjectFormatList();
291 list->push(formats[i]);
296 return list;
305 MtpObjectFormatList* list = new MtpObjectFormatList();
309 list->push(formats[i]);
314 return list;
323 MtpObjectPropertyList* list
357 jobject list = env->CallObjectMethod(mDatabase, method_getObjectPropertyList, local
656 jobject list = env->CallObjectMethod(mDatabase, method_getObjectPropertyList, local
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java286 * @see #list
307 * @see #list
351 public native final String[] list(String path) method in class:AssetManager
/frameworks/base/core/java/android/os/
H A DParcel.java994 * type of the objects in the list must be one that implements Parcelable.
999 * @param val The list of objects to be written.
1031 * @param val The list of strings to be written.
1056 * @param val The list of strings to be written.
1645 * dataPosition(). Returns null if the previously written list object was
1677 * dataPosition(). Returns null if the previously written list object was
1693 * dataPosition(). Returns null if the previously written list object was
1710 * previously written list object was null. The list <em>must</em> have
1739 * current dataPosition(). The list <e
1748 readTypedList(List<T> list, Parcelable.Creator<T> c) argument
1828 readStringList(List<String> list) argument
1852 readBinderList(List<IBinder> list) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java179 // Create a list of handlers to remove. Go ahead and make it
607 * Add javascript objects to the internal list of objects. The default behavior
1230 * @param list The native side will add and remove items from this list as
1231 * the native list changes.
1234 WebBackForwardList list);
1233 nativeCreateFrame(WebViewCore w, AssetManager am, WebBackForwardList list) argument
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java1443 public static AndroidCustomData constructAndroidCustomData(List<String> list) { argument
1447 if (list == null) {
1450 } else if (list.size() < 2) {
1451 mimeType = list.get(0);
1454 final int max = (list.size() < VCardConstants.MAX_DATA_COLUMN + 1) ? list.size()
1456 mimeType = list.get(0);
1457 dataList = list.subList(1, max);
2520 * Constructs the list of insert operation for this object. When the
2547 // the RawContact is the first operation that gets inserted into the list
2574 listToString(List<String> list) argument
[all...]

Completed in 1799 milliseconds

123