HomeSort by relevance Sort by last modified time
    Searched refs:select (Results 26 - 50 of 2212) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/
main5.c 13 #include <sys/select.h>
57 // this sleep finishes. We use select rather
67 select(0, NULL, NULL, NULL, &tv);
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/
main5.c 13 #include <sys/select.h>
57 // this sleep finishes. We use select rather
67 select(0, NULL, NULL, NULL, &tv);
  /external/clang/test/SemaCXX/
discrim-union.cpp 14 template<unsigned N> struct select {}; // : integral_constant<unsigned, N> {}; struct in namespace:detail
31 constexpr either_impl(select<0>, T &&t) : val(move(t)) {}
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {}
49 constexpr const T &get(select<0>) { return val; }
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
51 return rest.get(select<N-1>{});
76 impl(detail::select<impl_t::index(detail::type<U>())>(), move(t.value)) {}
85 decltype(static_cast<const impl_t&>(impl).get(detail::select<N>{}))
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ProxySelectorTest.java 108 * java.net.ProxySelector#select(URI)
113 proxyList = selector.select(httpUri);
129 proxyList = selector.select(httpUri);
132 proxyList = selector.select(httpsUri);
135 proxyList = selector.select(ftpUri);
138 proxyList = selector.select(tcpUri);
144 * java.net.ProxySelector#select(URI)
154 proxyList = selector.select(httpUri);
170 proxyList = selector.select(httpUri);
174 proxyList = selector.select(httpsUri)
540 public List<Proxy> select(URI uri) { method in class:ProxySelectorTest.MockProxySelector
    [all...]
  /external/tpm2/
HierarchyControl.c 22 BOOL select = (in->state == YES); local
95 if(selected != NULL && *selected != select)
109 *selected = select;
111 if(select == CLEAR && in->enable != TPM_RH_PLATFORM_NV)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug225.go 11 select {
17 select {
issue7998.go 12 select {
18 select {
bug078.go 10 select {
bug118.go 10 select {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug225.go 11 select {
17 select {
issue7998.go 12 select {
18 select {
bug078.go 10 select {
  /external/python/cpython2/Doc/tools/static/
version_switch.js 14 var buf = ['<select>'];
24 buf.push('</select>');
62 var select = build_select(version, release);
64 $('.version_switcher_placeholder').html(select);
65 $('.version_switcher_placeholder select').bind('change', on_switch);
  /prebuilts/go/darwin-x86/test/chan/
select7.go 7 // Test select when discarding a value.
18 select {
25 select {
42 select {
52 select {
nonblock.go 88 select {
94 select {
100 select {
106 select {
116 select {
137 select {
160 select {
180 select {
202 select {
222 select {
    [all...]
select6.go 7 // Test for select: Issue 2075
8 // A bug in select corrupts channel queues of failed cases
10 // select is the last in the queue. If further waits are made
22 select {
  /prebuilts/go/linux-x86/test/chan/
select7.go 7 // Test select when discarding a value.
18 select {
25 select {
42 select {
52 select {
nonblock.go 88 select {
94 select {
100 select {
106 select {
116 select {
137 select {
160 select {
180 select {
202 select {
222 select {
    [all...]
select6.go 7 // Test for select: Issue 2075
8 // A bug in select corrupts channel queues of failed cases
10 // select is the last in the queue. If further waits are made
22 select {
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1Choice.java 117 ChoiceComponent select = getSelectedComponent(); local
118 if (select == null) {
121 if (select.getTag() != null) {
123 if (select.isImplicitTagging()) {
128 return select.getTag().getTaggedLength(valueLen);
138 ChoiceComponent select = getSelectedComponent(); local
139 if (select == null) {
143 if (select.getTag() != null) {
144 if (select.isImplicitTagging()) {
145 select.getTag().writeTagAndLength(buf, value.isConstructed(), value.getBerValueLength())
159 ChoiceComponent select = createAndSetValue(tag); local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
select_test.go 21 // otherwise the compiler optimizes select out.
22 // See comment in runtime/select.go:^func selectgoImpl.
23 select {
29 select {
43 select {
63 select {
85 select {
95 select {
99 select {
126 select {
    [all...]
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
select_test.go 21 // otherwise the compiler optimizes select out.
22 // See comment in runtime/select.go:^func selectgoImpl.
23 select {
29 select {
43 select {
63 select {
85 select {
95 select {
99 select {
126 select {
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
template_17-1.in 9 Test assertion #17 by verifying that select returns -1 with
20 #include <sys/select.h>
53 if (select(0, NULL, NULL, NULL, &tv)== -1 &&
55 perror("select");
68 child process being inside the 'select' function
80 select(0, NULL, NULL, NULL, &tv);
  /external/ltp/testcases/kernel/syscalls/personality/
personality02.c 19 * If personality with STICKY_TIMEOUTS is used select() timeout is not updated.
24 #include <sys/select.h>
41 ret = select(2, &rfds, NULL, NULL, &tv);
44 tst_resm(TBROK | TERRNO, "select()");
  /frameworks/wilhelm/tests/sandbox/
getch.c 8 #include <sys/select.h>
41 return select(1, &fds, NULL, NULL, &tv);

Completed in 1212 milliseconds

12 3 4 5 6 7 8 91011>>