Home
last modified time | relevance | path

Searched refs:go (Results 1 – 25 of 524) sorted by relevance

12345678910>>...21

/external/ppp/pppd/
Dlcp.c626 lcp_options *go = &lcp_gotoptions[f->unit]; local
631 *go = *wo;
633 go->neg_mrru = 0;
634 go->neg_ssnhf = 0;
635 go->neg_endpoint = 0;
651 lcp_options *go = &lcp_gotoptions[f->unit]; local
664 return (LENCISHORT(go->neg_mru && go->mru != DEFMRU) +
665 LENCILONG(go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF) +
666 LENCISHORT(go->neg_eap) +
667 LENCICHAP(!go->neg_eap && go->neg_chap) +
[all …]
Dccp.c533 ccp_options *go = &ccp_gotoptions[f->unit]; local
536 *go = ccp_wantoptions[f->unit];
540 if (go->mppe) {
587 if (go->mppe & MPPE_OPT_40) {
589 go->mppe &= ~MPPE_OPT_40;
595 if (!(go->mppe & (MPPE_OPT_40 | MPPE_OPT_128))) {
603 ao->mppe = go->mppe;
605 ao->bsd_compress = go->bsd_compress = 0;
606 ao->predictor_1 = go->predictor_1 = 0;
607 ao->predictor_2 = go->predictor_2 = 0;
[all …]
Dipcp.c679 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
690 *go = *wo;
692 go->ouraddr = 0;
711 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
724 if (go->neg_addr && go->old_addrs && !ho->neg_addr && ho->old_addrs)
725 go->neg_addr = 0;
726 if (wo->neg_vj && !go->neg_vj && !go->old_vj) {
730 go->neg_vj = 1;
731 go->old_vj = 1;
732 go->vj_protocol = ho->vj_protocol;
[all …]
Dipv6cp.c520 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
528 *go = *wo;
529 eui64_zero(go->hisid); /* last proposed interface identifier */
540 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
545 return (LENCIIFACEID(go->neg_ifaceid) +
546 LENCIVJ(go->neg_vj));
559 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
586 ADDCIIFACEID(CI_IFACEID, go->neg_ifaceid, go->ourid);
588 ADDCIVJ(CI_COMPRESSTYPE, go->neg_vj, go->vj_protocol);
607 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
[all …]
Dipxcp.c75 #define go (&ipxcp_gotoptions[0]) macro
581 *go = *wo;
594 len = go->neg_nn ? CILEN_NETN : 0;
595 len += go->neg_node ? CILEN_NODEN : 0;
596 len += go->neg_name ? CILEN_NAME + strlen (go->name) - 1 : 0;
599 if (go->neg_router && to_external(go->router) != RIP_SAP)
618 if (go->neg_nn) {
621 PUTLONG (go->our_network, ucp);
624 if (go->neg_node) {
628 for (indx = 0; indx < sizeof (go->our_node); ++indx)
[all …]
/external/mksh/src/
Dmisc.c282 Getopt go; in parse_args() local
333 ksh_getopt_reset(&go, GF_ERROR|GF_PLUSOPT); in parse_args()
334 while ((optc = ksh_getopt(argv, &go, opts)) != -1) { in parse_args()
335 set = (go.info & GI_PLUS) ? 0 : 1; in parse_args()
341 array = go.optarg; in parse_args()
347 if (go.optarg == NULL) { in parse_args()
358 i = option(go.optarg); in parse_args()
370 bi_errorf("%s: %s", go.optarg, "bad option"); in parse_args()
383 chvt(go.optarg); in parse_args()
409 if (!(go.info & GI_MINUSMINUS) && argv[go.optind] && in parse_args()
[all …]
/external/wpa_supplicant_8/src/p2p/
Dp2p_dev_disc.c18 struct p2p_device *go, in p2p_build_dev_disc_req() argument
28 go->dialog_token++; in p2p_build_dev_disc_req()
29 if (go->dialog_token == 0) in p2p_build_dev_disc_req()
30 go->dialog_token = 1; in p2p_build_dev_disc_req()
31 p2p_buf_add_public_action_hdr(buf, P2P_DEV_DISC_REQ, go->dialog_token); in p2p_build_dev_disc_req()
35 p2p_buf_add_group_id(buf, go->info.p2p_device_addr, go->oper_ssid, in p2p_build_dev_disc_req()
36 go->oper_ssid_len); in p2p_build_dev_disc_req()
72 struct p2p_device *go; in p2p_send_dev_disc_req() local
75 go = p2p_get_device(p2p, dev->member_in_go_dev); in p2p_send_dev_disc_req()
76 if (go == NULL || dev->oper_freq <= 0) { in p2p_send_dev_disc_req()
[all …]
Dp2p_go_neg.c459 int go; in p2p_process_go_neg_req() local
502 go = p2p_go_det(p2p->go_intent, *msg.go_intent); in p2p_process_go_neg_req()
503 if (go < 0) { in p2p_process_go_neg_req()
563 if (go) { in p2p_process_go_neg_req()
594 dev->go_state = go ? LOCAL_GO : REMOTE_GO; in p2p_process_go_neg_req()
661 const u8 *resp_chan, int go) in p2p_build_go_neg_conf() argument
692 if (go || resp_chan == NULL) in p2p_build_go_neg_conf()
701 if (go) { in p2p_build_go_neg_conf()
716 int go = -1; in p2p_process_go_neg_resp() local
824 go = p2p_go_det(p2p->go_intent, *msg.go_intent); in p2p_process_go_neg_resp()
[all …]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DGuardedObjectTest.java36 GuardedObject go = new GuardedObject(obj, null); in testNoGuard() local
37 assertNull(go.getObject()); in testNoGuard()
40 go = new GuardedObject(obj, null); in testNoGuard()
41 assertEquals(obj, go.getObject()); in testNoGuard()
48 GuardedObject go = new GuardedObject(objBuffer, new Guard() { in testGuard() local
56 assertEquals(objBuffer, go.getObject()); in testGuard()
60 go.getObject(); in testGuard()
/external/qemu/elff/
Ddwarf_cu.cc481 const Elf_Byte* go = stmtl_header_.start; in get_pc_address_file_info() local
482 while (go < stmtl_header_.end) { in get_pc_address_file_info()
483 const Elf_Byte op = *go; in get_pc_address_file_info()
484 go++; in get_pc_address_file_info()
491 go = reinterpret_cast<const Elf_Byte*> in get_pc_address_file_info()
492 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&op_size)); in get_pc_address_file_info()
494 const Elf_Byte* ex_op_ptr = go; in get_pc_address_file_info()
543 go += op_size.u32; in get_pc_address_file_info()
558 go = reinterpret_cast<const Elf_Byte*> in get_pc_address_file_info()
559 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&addr_add)); in get_pc_address_file_info()
[all …]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
DConnectorAdapter.java68 private AtomicBoolean go = new AtomicBoolean(true); field in ConnectorAdapter
119 go.set(false); in close()
147 if( !go.get() ) in handleError()
158 while( go.get() ) { in run()
161 if( go.get() ) { in run()
206 while( go.get() ) { in run()
211 if( !go.get() ) in run()
DKernelAdapter.java73 private AtomicBoolean go = new AtomicBoolean(true); field in KernelAdapter
112 go.set(false); in close()
264 while( go.get() ) { in run()
287 if( !go.get() ) in run()
/external/webkit/Source/WebCore/page/
DHistory.cpp66 go(-1); in back()
71 go(context, -1); in back()
76 go(1); in forward()
81 go(context, 1); in forward()
84 void History::go(int distance) in go() function in WebCore::History
92 void History::go(ScriptExecutionContext* context, int distance) in go() function in WebCore::History
DHistory.h51 void go(int distance);
55 void go(ScriptExecutionContext*, int distance);
/external/webkit/Source/WebCore/manual-tests/wml/
DStartTests.wml15 <a href="go-element.wml">go-element.wml</a><br/>
17 <a href="onevent-go.wml">onevent-go.wml</a><br/>
26 <a href="task-go-in-anchor.wml">task-go-in-anchor.wml</a><br/>
30 <a href="template-go.wml">template-go.wml</a><br/>
/external/bison/tests/
Dconflicts.at177 NUM shift, and go to state 1
179 exp go to state 2
194 $end shift, and go to state 3
195 OP shift, and go to state 4
211 NUM shift, and go to state 1
213 exp go to state 5
221 OP shift, and go to state 4
280 NUM shift, and go to state 1
282 exp go to state 2
297 $end shift, and go to state 3
[all …]
Dregression.at219 'a' shift, and go to state 1
223 expr go to state 2
224 @2 go to state 3
233 @1 go to state 4
240 $end shift, and go to state 5
247 'c' shift, and go to state 6
254 'b' shift, and go to state 7
518 CONST_DEC_PART go to state 1
519 CONST_DEC_LIST go to state 2
520 CONST_DEC go to state 3
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DgoToLineDialog.css1 .go-to-line-dialog {
19 .go-to-line-dialog input {
23 .go-to-line-dialog button {
36 .go-to-line-dialog button:active {
DGoToLineDialog.js55 var go = dialogWindow.createChild("button");
56 go.textContent = WebInspector.UIString("Go");
57 go.addEventListener("click", this._onClick.bind(this), false);
58 go.addEventListener("mousedown", function(e) {
/external/clang/test/CodeGen/
Dcast.c3 extern void go(const void *p);
5 void foo(void) { go(v); } in foo()
/external/valgrind/main/tests/
Dx86_amd64_features.c45 static Bool go(char* cpu) in go() function
123 static Bool go(char* cpu) in go() function
140 return go(argv[1]); in main()
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
DSelectorKernel.java226 private AtomicBoolean go = new AtomicBoolean(true); field in SelectorKernel.SelectorThread
263 go.set(false); in close()
435 if( !go.get() ) in select()
453 while( go.get() ) { in run()
461 if( !go.get() ) in run()
465 if( !go.get() ) in run()
/external/llvm/test/Feature/
DREADME.txt3 features of LLVM, for very small examples. Entire programs should not go here.
5 Regression tests for individual bug fixes should go into the test/Regression dir.
/external/clang/test/SemaTemplate/
Dinstantiate-exception-spec-cxx11.cpp37 template<typename T> T go(T a) noexcept(noexcept(go(a))); // \
44 int k = go(0); // \ in f()
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
DUdpKernel.java239 private AtomicBoolean go = new AtomicBoolean(true); field in UdpKernel.HostThread
263 go.set(false); in close()
277 while( go.get() ) { in run()
287 if( !go.get() ) in run()

12345678910>>...21