HomeSort by relevance Sort by last modified time
    Searched defs:group (Results 251 - 275 of 1111) sorted by null

<<11121314151617181920>>

  /external/linux-tools-perf/src/tools/perf/bench/
sched-messaging.c 199 /* One group of senders and receivers */
200 static unsigned int group(pthread_t *pth, function
259 OPT_UINTEGER('g', "group", &num_groups, "Specify number of groups"),
291 total_children += group(pth_tab+total_children, num_fds,
315 printf("# %d sender and receiver %s per group\n",
  /external/linux-tools-perf/src/tools/perf/
perf.h 216 bool group; member in struct:perf_record_opts
  /external/linux-tools-perf/src/tools/perf/util/
probe-event.h 35 char *group; /* Group name */ member in struct:probe_trace_event
71 char *group; /* Group name */ member in struct:perf_probe_event
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 453 # Otherwise if it is a group, yield or traverse depending on what
814 group = OptionGroup(parser, "Input Options")
815 group.add_option("", "--source-root", dest="source_root", metavar="PATH",
818 group.add_option("", "--llvmbuild-source-root",
823 group.add_option("", "--build-root", dest="build_root", metavar="PATH",
826 parser.add_option_group(group)
828 group = OptionGroup(parser, "Output Options")
829 group.add_option("", "--print-tree", dest="print_tree",
832 group.add_option("", "--write-llvmbuild", dest="write_llvmbuild",
835 group.add_option("", "--write-library-table"
861 group = OptionGroup(parser, "Configuration Options") variable
    [all...]
  /external/protobuf/src/google/protobuf/
unknown_field_set.h 177 inline const UnknownFieldSet& group() const;
275 inline const UnknownFieldSet& UnknownField::group() const { function in class:google::protobuf::UnknownField
unknown_field_set_unittest.cc 169 TEST_F(UnknownFieldSetTest, Group) {
174 ASSERT_EQ(1, field->group().field_count());
176 const UnknownField& nested_field = field->group().field(0);
507 UnknownFieldSet* group = unknown_fields->AddGroup(1); local
511 group->AddVarint(1, 0);
  /external/replicaisland/src/com/replica/replicaisland/
LevelTree.java 94 if (parser.getName().equals("group")) {
221 final LevelGroup group = levels.get(x); local
222 final int levelCount = group.levels.size();
224 final Level level = group.levels.get(y);
241 final LevelGroup group = levels.get(levelRow); local
242 final int levelCount = group.levels.size();
244 final Level level = group.levels.get(y);
255 final LevelGroup group = levels.get(row); local
256 if (index >=0 && index < group.levels.size()) {
  /external/tcpdump/
print-igmp.c 156 u_int group, nsrcs, ngroups; local
166 (void)printf(", %d group record(s)", ngroups);
168 /* Print the group records */
169 group = 8;
171 if (len < group+8) {
175 TCHECK2(bp[group+4], 4);
176 (void)printf(" [gaddr %s", ipaddr_string(&bp[group+4]));
178 bp[group]));
179 nsrcs = EXTRACT_16BITS(&bp[group+2]);
181 if (len < group+8+(nsrcs<<2))
    [all...]
  /external/toybox/toys/pending/
mke2fs.c 92 unsigned inodespg; // Inodes per group
94 unsigned blockbits; // Bits per block. (Also blocks per group.)
98 unsigned nextgroup; // Next group we'll be allocating from
247 // Calculate inodes per group from total inodes.
313 // Does this group contain a superblock backup (and group descriptor table)?
314 static int is_sb_group(uint32_t group)
319 if(!group || group==1) return 1;
322 while (j<group) j*=i
397 int i, group = TT.nextblock\/TT.blockbits; local
    [all...]
tcpsvd.c 26 -u USER[:GRP] Change to user/group after bind
192 struct group *grp = NULL;
193 char *user = NULL, *group = NULL; local
197 group = strchr(ug,':');
198 if (group) {
199 *group = '\0';
200 group++;
209 if (group) {
210 if (!(grp = getgrnam(group))) {
211 n = atolx_range(group, 0, INT_MAX)
    [all...]
  /external/valgrind/callgrind/
clo.c 53 Int group; /* don't change caller dependency inside group !=0 */ member in struct:_fn_config
110 fnc->group = CONFIG_DEFAULT;
338 if (fnc->group != CONFIG_DEFAULT)
339 fn->group = fnc->group;
486 else if VG_STREQN(10, arg, "--fn-group") {
492 fnc->group = n;
597 " --fn-group<no>=<func> Put function into separation group <no>\n
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
mesh_rsn.c 148 wpa_printf(MSG_DEBUG, "AUTH: Initializing group state machine");
178 /* group mgmt */
182 /* group privacy / data frames */
250 int group = groups[wpa_s->mesh_rsn->sae_group_index]; local
252 if (group <= 0)
254 if (sae_set_group(sae, group) == 0) {
255 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
256 sae->group);
276 wpa_msg(wpa_s, MSG_DEBUG, "SAE: Failed to select group");
  /frameworks/base/core/java/android/nfc/cardemulation/
CardEmulation.java 363 AidGroup group = sService.getAidGroupForService(UserHandle.myUserId(), service, local
365 return (group != null ? group.getAids() : null);
373 AidGroup group = sService.getAidGroupForService(UserHandle.myUserId(), service, local
375 return (group != null ? group.getAids() : null);
391 * this method, and a statically registered AID group for the same category
392 * exists in the manifest, the static AID group will become active again.
396 * @return whether the group was successfully removed.
  /frameworks/base/core/java/android/preference/
PreferenceGroupAdapter.java 34 * An adapter that returns the {@link Preference} contained in this group.
59 * The group that we are providing data from.
127 // If this group gets or loses any children, let us know
157 private void flattenPreferenceGroup(List<Preference> preferences, PreferenceGroup group) {
159 group.sortPreferences();
161 final int groupSize = group.getPreferenceCount();
163 final Preference preference = group.getPreference(i);
265 // There should always be a preference group, and these groups are always
  /frameworks/base/core/java/android/service/notification/
StatusBarNotification.java 99 final String group = getNotification().getGroup(); local
101 if (group == null && sortKey == null) {
102 // a group of one
106 (group == null
108 : "g:" + group);
263 * A key that indicates the group with which this message ranks.
  /frameworks/base/core/java/com/android/internal/os/
SamplingProfilerIntegration.java 108 ThreadGroup group = Thread.currentThread().getThreadGroup(); local
109 SamplingProfiler.ThreadSet threadSet = SamplingProfiler.newThreadGroupThreadSet(group);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
Task.java 121 public TaskGrouping group; field in class:Task
186 public void setGroup(TaskGrouping group) {
187 if (group != null && this.group != null) {
188 throw new RuntimeException("This task is already assigned to a group.");
190 this.group = group;
228 String groupAffiliation = "no group";
229 if (group != null) {
230 groupAffiliation = Integer.toString(group.affiliation)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
IPTestList.java 51 GROUP_TEST_EMULATED ("Group Test (emulated)", INTRINSIC, 51.7f),
52 GROUP_TEST_NATIVE ("Group Test (native)", INTRINSIC, 52.9f),
82 public final int group; field in class:IPTestList.TestName
87 group = g;
92 group = g;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
IPTestListJB.java 51 GROUP_TEST_EMULATED ("Group Test (emulated)", INTRINSIC, 51.7f),
52 GROUP_TEST_NATIVE ("Group Test (native)", INTRINSIC, 52.9f),
84 public final int group; field in class:IPTestListJB.TestName
89 group = g;
94 group = g;
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceGroupAdapter.java 42 * The group that we are providing data from.
105 // If this group gets or loses any children, let us know
146 private void flattenPreferenceGroup(List<Preference> preferences, PreferenceGroup group) {
147 group.sortPreferences();
149 final int groupSize = group.getPreferenceCount();
151 final Preference preference = group.getPreference(i);
  /libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java 157 ThreadGroup group = new ThreadGroup("1"); local
158 Thread t2 = new Thread(group, "t2") {
  /packages/apps/Browser/src/com/android/browser/
DateSortedExpandableListAdapter.java 159 * Determine which group an item belongs to.
161 * @return int Group position of the containing group.
164 int group = -1; local
169 // bin is the same as the group if the number of bins is the
174 // There are some empty bins. Find the corresponding group.
175 group = 0;
178 group++;
184 return group;
188 * Translates from a group position in the ExpandableList to a bin. This i
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListAdapter.java 17 package com.android.contacts.group;
59 // If there's no selected group already and the cursor is valid, then by default, select the
60 // first group
126 // Figure out if this is the first group for this account name / account type pair by
161 // Add a header if this is the first group in an account and hide the divider
182 // Bind the group data
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
igmp.h 2 * Linux NET3: Internet Group Management Protocol [IGMP]
35 __be32 group; member in struct:igmphdr
38 /* V3 group record types [grec_type] */
67 __be32 group; member in struct:igmpv3_query
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
printf.h 47 unsigned int group:1; /* ' flag. */ member in struct:printf_info

Completed in 729 milliseconds

<<11121314151617181920>>