Lines Matching defs:group

77      * 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 are scheduled with a reduced share of the CPU.
320 * Foreground thread group - All threads in
321 * this group are scheduled with a normal share of the CPU.
329 * System thread group.
335 * Application audio thread group.
341 * System audio thread group.
378 * @param gid The group-id under which the process will run.
379 * @param gids Additional group-ids associated with the process.
558 * @param gids null-ok; a list of supplementary group IDs that the
733 * Returns the thread group leader id for a currently running thread.
735 * @return the thread group leader id of the thread, or -1 if the thread is not running.
773 * Sets the scheduling group for a thread.
776 * @param group The target group for this thread from THREAD_GROUP_*.
783 * If the thread is a thread group leader, that is it's gettid() == getpid(),
784 * then the other threads in the same thread group are _not_ affected.
786 public static final native void setThreadGroup(int tid, int group)
790 * Sets the scheduling group for a process and all child threads
793 * @param group The target group for this process from THREAD_GROUP_*.
801 * group == THREAD_GROUP_DEFAULT means to move all non-background priority
802 * threads to the foreground scheduling group, but to leave background
803 * priority threads alone. group == THREAD_GROUP_BG_NONINTERACTIVE moves all
804 * threads, regardless of priority, to the background scheduling group.
805 * group == THREAD_GROUP_FOREGROUND is not allowed.
807 public static final native void setProcessGroup(int pid, int group)