Searched defs:master (Results 1 - 25 of 63) sorted by relevance

123

/external/compiler-rt/test/msan/Linux/
H A Dforkpty.cc10 int master, slave; local
11 openpty(&master, &slave, NULL, NULL, NULL);
12 assert(__msan_test_shadow(&master, sizeof(master)) == -1);
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsMaster.java29 @Parameter(names = "-master")
30 public String master; field in class:ArgsMaster
H A DArgsSlaveBogus.java29 @Parameter(names = "-master")
30 public String master; field in class:ArgsSlaveBogus
H A DCommandLineArgs.java114 @Parameter(names = "-master", description ="Host where the master is")
115 public String master; field in class:CommandLineArgs
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dgetpass.cc12 int master; local
13 int pid = forkpty(&master, NULL, NULL, NULL);
20 int res = read(master, buf, sizeof(buf));
22 write(master, "password\n", 9);
23 while ((res = read(master, buf, sizeof(buf))) > 0) write(1, buf, res);
/external/iptables/include/linux/netfilter/
H A Dxt_limit.h22 struct xt_limit_priv *master; member in struct:xt_rateinfo
H A Dxt_quota.h19 struct xt_quota_priv *master; member in struct:xt_quota_info
H A Dxt_quota2.h22 struct xt_quota_counter *master __attribute__((aligned(8))); member in struct:xt_quota_mtinfo2
H A Dxt_statistic.h33 struct xt_statistic_priv *master __attribute__((aligned(8))); member in struct:xt_statistic_info
H A Dxt_hashlimit.h46 struct xt_hashlimit_info *master; member in union:xt_hashlimit_info::__anon7482
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_limit.h22 struct xt_limit_priv *master; member in struct:xt_rateinfo
H A Dxt_quota.h19 struct xt_quota_priv *master; member in struct:xt_quota_info
H A Dxt_statistic.h33 struct xt_statistic_priv *master __attribute__((aligned(8))); member in struct:xt_statistic_info
H A Dxt_hashlimit.h47 struct xt_hashlimit_info *master; member in union:xt_hashlimit_info::__anon8114
/external/kernel-headers/original/uapi/linux/
H A Dstm.h26 * @master: assigned master
33 * fills out @master, @channel and @width.
37 __u16 master; member in struct:stp_policy_id
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DPeekingIteratorTest.java50 * <p>This IteratorTester makes copies of the master so that it can
55 private Iterable<T> master; field in class:PeekingIteratorTest.PeekingIteratorTester
58 public PeekingIteratorTester(Collection<T> master) { argument
59 super(master.size() + 3, MODIFIABLE, master,
61 this.master = master;
64 // make copy from master to verify later
65 targetList = Lists.newArrayList(master);
/external/libjpeg-turbo/
H A Djdmaster.c14 * This file contains master control logic for the JPEG decompressor.
92 /* Do computations that are needed before master selection phase.
255 * Also note that it may be called before the master module is initialized!
260 /* Do computations that are needed before master selection phase */
450 my_master_ptr master = (my_master_ptr) cinfo->master; local
466 master->pass_number = 0;
467 master->using_merged_upsample = use_merged_upsample(cinfo);
470 master->quantizer_1pass = NULL;
471 master
610 my_master_ptr master = (my_master_ptr) cinfo->master; local
670 my_master_ptr master = (my_master_ptr) cinfo->master; local
687 my_master_ptr master = (my_master_ptr) cinfo->master; local
715 my_master_ptr master = (my_master_ptr) cinfo->master; local
[all...]
/external/opencv3/3rdparty/libjpeg/
H A Djdmaster.c9 * This file contains master control logic for the JPEG decompressor.
84 * Also note that it may be called before the master module is initialized!
89 /* Do computations that are needed before master selection phase.
271 my_master_ptr master = (my_master_ptr) cinfo->master; local
287 master->pass_number = 0;
288 master->using_merged_upsample = use_merged_upsample(cinfo);
291 master->quantizer_1pass = NULL;
292 master->quantizer_2pass = NULL;
319 master
414 my_master_ptr master = (my_master_ptr) cinfo->master; local
474 my_master_ptr master = (my_master_ptr) cinfo->master; local
491 my_master_ptr master = (my_master_ptr) cinfo->master; local
519 my_master_ptr master; local
[all...]
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jdmaster.c8 * This file contains master control logic for the JPEG decompressor.
80 * Also note that it may be called before the master module is initialized!
85 /* Do computations that are needed before master selection phase */
290 my_master_ptr master = (my_master_ptr) cinfo->master; local
306 master->pass_number = 0;
307 master->using_merged_upsample = use_merged_upsample(cinfo);
310 master->quantizer_1pass = NULL;
311 master->quantizer_2pass = NULL;
338 master
440 my_master_ptr master = (my_master_ptr) cinfo->master; local
500 my_master_ptr master = (my_master_ptr) cinfo->master; local
517 my_master_ptr master = (my_master_ptr) cinfo->master; local
545 my_master_ptr master; local
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DPeekingIteratorTest.java51 * <p>This IteratorTester makes copies of the master so that it can
56 private Iterable<T> master; field in class:PeekingIteratorTest.PeekingIteratorTester
59 public PeekingIteratorTester(Collection<T> master) { argument
60 super(master.size() + 3, MODIFIABLE, master,
62 this.master = master;
65 // make copy from master to verify later
66 targetList = Lists.newArrayList(master);
/external/autotest/client/tests/tsc/src/
H A Dchecktsc.c170 state_t master; variable
212 set_state(&master, READY);
217 set_state(&master, DONE);
246 wait_for_state(&master, READY);
264 wait_for_state(&master, DONE);
308 set_state(&master, READY);
/external/chromium-trace/catapult/experimental/buildbot/
H A Dbuildbot.py33 def _FetchData(master, url):
34 url = '%s/%s/json/%s' % (BASE_URL, master, url)
50 def Builders(master):
54 if os.path.exists(master):
56 for builder_name in os.listdir(master):
57 cache_file_path = os.path.join(master, builder_name, CACHE_FILE_NAME)
71 def Update(master, builders):
73 builder_data = _FetchData(master, 'builders')
78 builders[builder_name] = Builder(master, builder_name, builder_info)
86 def __init__(self, master, nam
169 def master(self): member in class:Builder
[all...]
/external/iproute2/include/linux/hdlc/
H A Dioctl.h73 char master[IFNAMSIZ]; /* Name of master FRAD device */ member in struct:__anon7067
/external/iproute2/ip/
H A Dipneigh.c42 int master; member in struct:__anon7253
228 if (filter.master && !(n->nlmsg_flags & NLM_F_DUMP_FILTERED)) {
232 "\nWARNING: Kernel does not support filtering by master device\n\n");
376 } else if (strcmp(*argv, "master") == 0) {
383 filter.master = ifindex;
/external/kernel-headers/original/uapi/linux/hdlc/
H A Dioctl.h73 char master[IFNAMSIZ]; /* Name of master FRAD device */ member in struct:__anon7881

Completed in 771 milliseconds

123