Home
last modified time | relevance | path

Searched refs:nc (Results 1 – 25 of 137) sorted by relevance

123456

/external/bluetooth/bluez/network/
Dconnection.c101 struct network_conn *nc = list->data; in find_connection() local
103 if (nc->id == id) in find_connection()
104 return nc; in find_connection()
113 struct network_conn *nc = data; in bnep_watchdog_cb() local
118 emit_property_changed(connection, nc->peer->path, in bnep_watchdog_cb()
121 emit_property_changed(connection, nc->peer->path, in bnep_watchdog_cb()
124 emit_property_changed(connection, nc->peer->path, in bnep_watchdog_cb()
127 device_remove_disconnect_watch(nc->peer->device, nc->dc_id); in bnep_watchdog_cb()
128 nc->dc_id = 0; in bnep_watchdog_cb()
129 if (nc->watch) { in bnep_watchdog_cb()
[all …]
/external/clang/include/clang/Basic/
DBuiltinsPTX.def17 BUILTIN(__builtin_ptx_read_tid_x, "i", "nc")
18 BUILTIN(__builtin_ptx_read_tid_y, "i", "nc")
19 BUILTIN(__builtin_ptx_read_tid_z, "i", "nc")
20 BUILTIN(__builtin_ptx_read_tid_w, "i", "nc")
22 BUILTIN(__builtin_ptx_read_ntid_x, "i", "nc")
23 BUILTIN(__builtin_ptx_read_ntid_y, "i", "nc")
24 BUILTIN(__builtin_ptx_read_ntid_z, "i", "nc")
25 BUILTIN(__builtin_ptx_read_ntid_w, "i", "nc")
27 BUILTIN(__builtin_ptx_read_ctaid_x, "i", "nc")
28 BUILTIN(__builtin_ptx_read_ctaid_y, "i", "nc")
[all …]
DBuiltinsARM.def22 BUILTIN(__builtin_arm_qadd, "iii", "nc")
23 BUILTIN(__builtin_arm_qsub, "iii", "nc")
24 BUILTIN(__builtin_arm_ssat, "iiUi", "nc")
25 BUILTIN(__builtin_arm_usat, "UiUiUi", "nc")
32 BUILTIN(__builtin_arm_get_fpscr, "Ui", "nc")
33 BUILTIN(__builtin_arm_set_fpscr, "vUi", "nc")
34 BUILTIN(__builtin_arm_vcvtr_f, "ffi", "nc")
35 BUILTIN(__builtin_arm_vcvtr_d, "fdi", "nc")
DBuiltinsX86.def30 BUILTIN(__builtin_ia32_pavgusb, "V8cV8cV8c", "nc")
31 BUILTIN(__builtin_ia32_pf2id, "V2iV2f", "nc")
32 BUILTIN(__builtin_ia32_pfacc, "V2fV2fV2f", "nc")
33 BUILTIN(__builtin_ia32_pfadd, "V2fV2fV2f", "nc")
34 BUILTIN(__builtin_ia32_pfcmpeq, "V2iV2fV2f", "nc")
35 BUILTIN(__builtin_ia32_pfcmpge, "V2iV2fV2f", "nc")
36 BUILTIN(__builtin_ia32_pfcmpgt, "V2iV2fV2f", "nc")
37 BUILTIN(__builtin_ia32_pfmax, "V2fV2fV2f", "nc")
38 BUILTIN(__builtin_ia32_pfmin, "V2fV2fV2f", "nc")
39 BUILTIN(__builtin_ia32_pfmul, "V2fV2fV2f", "nc")
[all …]
DBuiltins.def102 BUILTIN(__builtin_huge_val, "d", "nc")
103 BUILTIN(__builtin_huge_valf, "f", "nc")
104 BUILTIN(__builtin_huge_vall, "Ld", "nc")
105 BUILTIN(__builtin_inf , "d" , "nc")
106 BUILTIN(__builtin_inff , "f" , "nc")
107 BUILTIN(__builtin_infl , "Ld" , "nc")
342 BUILTIN(__builtin_isgreater , "i.", "nc")
343 BUILTIN(__builtin_isgreaterequal, "i.", "nc")
344 BUILTIN(__builtin_isless , "i.", "nc")
345 BUILTIN(__builtin_islessequal , "i.", "nc")
[all …]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
DNameCallbackTest.java34 NameCallback nc; field in NameCallbackTest
40 nc = new NameCallback("prompt", "defaultName"); in testNameCallback_01()
41 assertEquals("prompt", nc.getPrompt()); in testNameCallback_01()
42 assertEquals("defaultName", nc.getDefaultName()); in testNameCallback_01()
43 nc.setName("Name"); in testNameCallback_01()
44 assertEquals("Name", nc.getName()); in testNameCallback_01()
53 nc = new NameCallback("", "DefaultName"); in testNameCallback_02()
58 nc = new NameCallback(null, "DefaultName"); in testNameCallback_02()
63 nc = new NameCallback("Prompt", ""); in testNameCallback_02()
68 nc = new NameCallback("Prompt", null); in testNameCallback_02()
DUnsupportedCallbackExceptionTest.java36 NameCallback nc = new NameCallback("prompt"); field in UnsupportedCallbackExceptionTest
42 UnsupportedCallbackException ce = new UnsupportedCallbackException(nc); in testUnsupportedCallbackException_01()
43 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_01()
48 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_01()
57 UnsupportedCallbackException ce = new UnsupportedCallbackException(nc, "message"); in testUnsupportedCallbackException_02()
59 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_02()
64 assertEquals(nc, ce.getCallback()); in testUnsupportedCallbackException_02()
/external/clang/test/SemaCXX/
Dcopy-assignment.cpp61 C c, nc; in test() local
82 nc = c; in test()
83 nc = constC; in test()
84 nc = 1; in test()
85 nc = 1L; in test()
86 nc = 1.0; // expected-error{{use of overloaded operator '=' is ambiguous}} in test()
87 nc += 1; in test()
88 nc += 1L; in test()
89 nc += 1.0; // expected-error{{use of overloaded operator '+=' is ambiguous}} in test()
Dcxx0x-cursory-default-delete.cpp17 non_copiable nc; in fn1() local
18 non_copiable nc2 = nc; // expected-error {{deleted constructor}} in fn1()
19 nc = nc; // expected-error {{deleted operator}} in fn1()
/external/webrtc/src/modules/audio_processing/utility/
Dfft4g.c317 void makect(int nc, int *ip, float *c); in rdft()
321 void rftfsub(int n, float *a, int nc, float *c); in rdft()
322 void rftbsub(int n, float *a, int nc, float *c); in rdft()
323 int nw, nc; in rdft() local
331 nc = ip[1]; in rdft()
332 if (n > (nc << 2)) { in rdft()
333 nc = n >> 2; in rdft()
334 makect(nc, ip, w + nw); in rdft()
340 rftfsub(n, a, nc, w + nw); in rdft()
351 rftbsub(n, a, nc, w + nw); in rdft()
[all …]
/external/blktrace/
Dblktrace.c248 struct cl_conn *nc; /* Server network connection */ member
924 static int net_get_header(struct cl_conn *nc, struct blktrace_net_hdr *bnh) in net_get_header() argument
927 int fl = fcntl(nc->fd, F_GETFL); in net_get_header()
929 fcntl(nc->fd, F_SETFL, fl | O_NONBLOCK); in net_get_header()
930 bytes_read = __net_recv_data(nc->fd, bnh, sizeof(*bnh)); in net_get_header()
931 fcntl(nc->fd, F_SETFL, fl & ~O_NONBLOCK); in net_get_header()
1477 struct cl_conn *nc = iop->nc; in fill_ofname() local
1479 len += sprintf(dst + len, "%s-", nc->ch->hostname); in fill_ofname()
2168 struct cl_conn *nc; in ch_add_connection() local
2170 nc = malloc(sizeof(*nc)); in ch_add_connection()
[all …]
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
Dscanresults.ui.h94 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
95 if (nc == NULL) in bssSelected()
97 nc->setWpaGui(wpagui); in bssSelected()
98 nc->paramsFromScanResults(sel); in bssSelected()
99 nc->show(); in bssSelected()
100 nc->exec(); in bssSelected()
/external/wpa_supplicant/wpa_gui/
Dscanresults.ui.h94 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
95 if (nc == NULL) in bssSelected()
97 nc->setWpaGui(wpagui); in bssSelected()
98 nc->paramsFromScanResults(sel); in bssSelected()
99 nc->show(); in bssSelected()
100 nc->exec(); in bssSelected()
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
Dscanresults.ui.h94 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
95 if (nc == NULL) in bssSelected()
97 nc->setWpaGui(wpagui); in bssSelected()
98 nc->paramsFromScanResults(sel); in bssSelected()
99 nc->show(); in bssSelected()
100 nc->exec(); in bssSelected()
/external/netcat/scripts/
Dncp23 compress -c < "$1" | nc -v -w 2 $2 $MYPORT && exit 0
25 nc -v -w 2 $2 $MYPORT < "$1" && exit 0
39 nc -v -w 30 -p $MYPORT -l < /dev/null | uncompress -c > "$1" && exit 0
41 nc -v -w 30 -p $MYPORT -l < /dev/null > "$1" && exit 0
Dprobe23 echo 'UDP echoecho!' | nc -u -p 7 -s `hostname` -w 3 "$1" 7 19 2>&1
39 nc -v -z -u -r "$1" 111 66-70 88 53 87 161-164 121-123 213 49 2>&1
40 nc -v -z -u -r "$1" 137-140 694-712 747-770 175-180 2103 510-530 2>&1
46 if nc -w 5 -z -u "$1" 111 ; then
Dwebproxy54 nc -w 600 -n -l -p $PORT -e "$0" $XNC "$CLIENT" < /dev/null > /dev/null \
67 nc -w 1 -n 127.0.0.1 $PORT < /dev/null > /dev/null 2>&1
85 CLIENT=`nc -z -v -w 8 "$1" 22000 2>&1 | sed 's/.*\[\(..*\)\].*/\1/'`
95 nc -v -w 600 -n -l -p $PORT -e "$0" $XNC "$CLIENT" &
Discan16 nc -z -w 9 "$1" 113 || { echo "oops, $1 isn't running identd" ; exit 0 ; }
25 nc -v -w 8 -p ${RP} "$TRG" ${1} < /dev/null > /dev/null &
28 echo "${1},${RP}" | nc -w 4 -r "$TRG" 113 2>&1
Ddist.sh12 echo "<36>elite: ${SRC}" | ./nc -u -w 1 localhost 514 > /dev/null 2>&1
20 ./nc -v -l -p ${PORT} -e dist.sh < /dev/null >> dist.log 2>&1 &
22 echo "<36>elite: done" | ./nc -u -w 1 localhost 514 > /dev/null 2>&1
Dwebrelay27 nc -w 600 -l -n -p $PORT -e "$0" $XNC < /dev/null > /dev/null 2>&1 &
29 exec nc -w 15 $RDEST $RPORT
41 nc -v -w 600 -l -p $PORT -e "$0" $XNC < /dev/null > /dev/null &
/external/wpa_supplicant/wpa_gui-qt4/
Dscanresults.cpp119 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
120 if (nc == NULL) in bssSelected()
122 nc->setWpaGui(wpagui); in bssSelected()
123 nc->paramsFromScanResults(sel); in bssSelected()
124 nc->show(); in bssSelected()
125 nc->exec(); in bssSelected()
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dscanresults.cpp137 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
138 if (nc == NULL) in bssSelected()
140 nc->setWpaGui(wpagui); in bssSelected()
141 nc->paramsFromScanResults(sel); in bssSelected()
142 nc->show(); in bssSelected()
143 nc->exec(); in bssSelected()
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
Dscanresults.cpp137 NetworkConfig *nc = new NetworkConfig(); in bssSelected() local
138 if (nc == NULL) in bssSelected()
140 nc->setWpaGui(wpagui); in bssSelected()
141 nc->paramsFromScanResults(sel); in bssSelected()
142 nc->show(); in bssSelected()
143 nc->exec(); in bssSelected()
/external/nist-sip/java/gov/nist/javax/sip/header/
DAuthenticationInfo.java174 String nc = Integer.toHexString(nonceCount); in setNonceCount() local
177 nc = base.substring(0, 8 - nc.length()) + nc; in setNonceCount()
178 this.setParameter(ParameterNames.NC, nc); in setNonceCount()
/external/openssl/crypto/x509v3/
Dv3_ncons.c75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
239 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc) in NAME_CONSTRAINTS_check() argument
252 r = nc_match(&gntmp, nc); in NAME_CONSTRAINTS_check()
275 r = nc_match(&gntmp, nc); in NAME_CONSTRAINTS_check()
286 r = nc_match(gen, nc); in NAME_CONSTRAINTS_check()
295 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc) in nc_match() argument
304 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->permittedSubtrees); i++) in nc_match()
306 sub = sk_GENERAL_SUBTREE_value(nc->permittedSubtrees, i); in nc_match()
328 for (i = 0; i < sk_GENERAL_SUBTREE_num(nc->excludedSubtrees); i++) in nc_match()
330 sub = sk_GENERAL_SUBTREE_value(nc->excludedSubtrees, i); in nc_match()

123456