Searched refs:group (Results 1 - 25 of 99) sorted by path

1234

/frameworks/av/include/media/stagefright/
H A DMediaBuffer.h79 void setObserver(MediaBufferObserver *group);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_group_map.c103 Function to decode interleaved slice group map type, i.e. slice
104 group map type 0.
109 runLength run_length[] values for each slice group
113 map slice group map is stored here
129 u32 i,j, group; local
140 for (group = 0; group < numSliceGroups && i < picSize;
141 i += runLength[group++])
143 ASSERT(runLength[group] <= picSize);
144 for (j = 0; j < runLength[group]
237 u32 group; local
[all...]
/frameworks/av/media/mtp/
H A DMtpDevice.cpp668 bool MtpDevice::readObject(MtpObjectHandle handle, const char* destPath, int group, int perm) { argument
676 fchown(fd, getuid(), group);
H A DMtpDevice.h102 bool readObject(MtpObjectHandle handle, const char* destPath, int group,
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java478 System.out.print("permission group:");
501 * Lists all the permissions in a group.
597 + "group:" + pgi.name);
623 if (groups && groupName == null && pi.group != null) {
1495 System.err.println(" -g: organize by group.");
/frameworks/base/core/java/android/app/
H A DActivityThread.java836 public void setSchedulingGroup(int group) { argument
842 Process.setProcessGroup(Process.myPid(), group);
844 Slog.w(TAG, "Failed setting process group to " + group, e);
H A DApplicationPackageManager.java160 public List<PermissionInfo> queryPermissionsByGroup(String group, int flags) argument
163 List<PermissionInfo> pi = mPM.queryPermissionsByGroup(group, flags);
171 throw new NameNotFoundException(group);
H A DApplicationThreadNative.java418 int group = data.readInt();
419 setSchedulingGroup(group);
1050 public void setSchedulingGroup(int group) throws RemoteException { argument
1053 data.writeInt(group);
H A DIApplicationThread.java117 void setSchedulingGroup(int group) throws RemoteException; argument
H A DMediaRouteButton.java467 public void onRouteGrouped(MediaRouter router, RouteInfo info, RouteGroup group, argument
473 public void onRouteUngrouped(MediaRouter router, RouteInfo info, RouteGroup group) { argument
/frameworks/base/core/java/android/content/pm/
H A DIPackageManager.aidl65 List<PermissionInfo> queryPermissionsByGroup(String group, int flags);
H A DPackageManager.java120 * {@link PackageInfo#gids group ids} that are associated with an
1267 * Return an array of all of the secondary group-ids that have been
1300 * Query for all of the permissions associated with a particular group.
1302 * <p>Throws {@link NameNotFoundException} if the given group does not
1305 * @param group The fully qualified name (i.e. com.google.permission.LOGIN)
1306 * of the permission group you are interested in. Use null to
1307 * find all of the permissions not associated with a group.
1312 * about all of the permissions in the given group.
1314 public abstract List<PermissionInfo> queryPermissionsByGroup(String group, argument
1318 * Retrieve all of the information we know about a particular group o
[all...]
H A DPackageParser.java1005 } else if (tagName.equals("permission-group")) {
1477 "<permission-group>", sa,
1500 if (!parseAllMetaData(res, parser, attrs, "<permission-group>", perm,
1532 perm.info.group = sa.getNonResourceString(
1534 if (perm.info.group != null) {
1535 perm.info.group = perm.info.group.intern();
3446 public PermissionGroup group; field in class:PackageParser.Permission
H A DPermissionInfo.java93 * The group this permission is a part of, as per
96 public String group; field in class:PermissionInfo
166 group = orig.group;
209 dest.writeString(group);
228 group = source.readString();
H A DVerifierDeviceIdentity.java108 * group.
117 * GROUP_SIZE) to make the odd-size group appear at the end instead
127 final int group = (int) (input & 0x1F);
130 encoded[--index] = alphabet[group];
143 final int group = input[i];
150 if ('A' <= group && group <= 'Z') {
151 value = group - 'A';
152 } else if ('2' <= group && group <
[all...]
/frameworks/base/core/java/android/net/
H A DWebAddress.java79 t = m.group(MATCH_GROUP_SCHEME);
81 t = m.group(MATCH_GROUP_AUTHORITY);
83 t = m.group(MATCH_GROUP_HOST);
85 t = m.group(MATCH_GROUP_PORT);
94 t = m.group(MATCH_GROUP_PATH);
/frameworks/base/core/java/android/os/
H A DProcess.java77 * Defines the UID/GID for the log group.
101 * Defines the GID for the group that allows write access to the SD card.
107 * Defines the UID/GID for the group that controls VPN services.
125 * Defines the GID for the group that allows write access to the internal media storage.
169 * Defines a secondary group id for access to the bluetooth hardware.
300 * Default thread group -
302 * When used with setProcessGroup(), the group of each thread in the process
305 * are moved to foreground thread group. All other threads are left unchanged.
311 * Background thread group - All threads in
312 * this group ar
786 setThreadGroup(int tid, int group) argument
807 setProcessGroup(int pid, int group) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceGroupAdapter.java32 * An adapter that returns the {@link Preference} contained in this group.
54 * The group that we are providing data from.
116 // If this group gets or loses any children, let us know
146 private void flattenPreferenceGroup(List<Preference> preferences, PreferenceGroup group) { argument
148 group.sortPreferences();
150 final int groupSize = group.getPreferenceCount();
152 final Preference preference = group.getPreference(i);
232 // There should always be a preference group, and these groups are always
/frameworks/base/core/java/android/provider/
H A DContactsContract.java1180 * The array of group counts for the corresponding group. Contains the same number
1295 * visible group; "0" otherwise.</td>
1588 CONTENT_URI, "group");
6571 * The sourceid of the group that this group membership refers to.
6577 * look up a group with this {@link Groups Groups.SOURCE_ID}. If such a group
6578 * is found, it will use the corresponding row id. If the group is not
6595 * The row id of the group tha
[all...]
/frameworks/base/core/java/android/text/util/
H A DLinkify.java377 String url = makeUrl(m.group(0), new String[] { prefix },
435 String url = makeUrl(m.group(0), schemes, m, transformFilter);
/frameworks/base/core/java/android/util/
H A DEventLog.java242 int num = Integer.parseInt(m.group(1));
243 String name = m.group(2);
H A DPatterns.java192 String s = matcher.group(i);
216 String matchingRegion = matcher.group();
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java1572 ViewGroup group = (ViewGroup) view;
1574 int count = group.getChildCount();
1576 destroyHardwareLayer(group.getChildAt(i));
1601 ViewGroup group = (ViewGroup) view;
1603 int count = group.getChildCount();
1605 destroyResources(group.getChildAt(i));
H A DLayoutInflater.java808 final ViewGroup group = (ViewGroup) parent;
820 params = group.generateLayoutParams(attrs);
822 params = group.generateLayoutParams(childAttrs);
857 group.addView(view);
H A DMenu.java77 * Value to use for group and item identifier integers when you don't care
83 * First value for group and item identifier integers.
118 * any existing menu items in the same group.
157 * @param groupId The group identifier that this item should be part of.
160 * group.
174 * @param groupId The group identifier that this item should be part of.
177 * group.
216 * @param groupId The group identifier that this item should be part of.
219 * group.
233 * @param groupId The group identifie
339 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
349 setGroupVisible(int group, boolean visible) argument
359 setGroupEnabled(int group, boolean enabled) argument
[all...]

Completed in 279 milliseconds

1234