HomeSort by relevance Sort by last modified time
    Searched refs:go (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
cast.c 3 extern void go(const void *p);
5 void foo(void) { go(v); }
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 36 GuardedObject go = new GuardedObject(obj, null); local
37 assertNull(go.getObject());
40 go = new GuardedObject(obj, null);
41 assertEquals(obj, go.getObject());
48 GuardedObject go = new GuardedObject(objBuffer, new Guard() { local
56 assertEquals(objBuffer, go.getObject());
60 go.getObject();
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 39 GuardedObject go = new GuardedObject(obj, null); local
40 assertNull(go.getObject());
43 go = new GuardedObject(obj, null);
44 assertEquals(obj, go.getObject());
51 GuardedObject go = new GuardedObject(objBuffer, new Guard() { local
59 assertEquals(objBuffer, go.getObject());
63 go.getObject();
  /external/ppp/pppd/
lcp.c 626 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)
689 lcp_options *go = &lcp_gotoptions[f->unit]; local
777 lcp_options *go = &lcp_gotoptions[f->unit]; local
933 lcp_options *go = &lcp_gotoptions[f->unit]; local
1326 lcp_options *go = &lcp_gotoptions[f->unit]; local
1486 lcp_options *go = &lcp_gotoptions[f->unit]; local
1876 lcp_options *go = &lcp_gotoptions[f->unit]; local
1925 lcp_options *go = &lcp_gotoptions[f->unit]; local
    [all...]
ccp.c 533 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
676 ccp_options *go = &ccp_gotoptions[f->unit]; local
695 ccp_options *go = &ccp_gotoptions[f->unit]; local
813 ccp_options *go = &ccp_gotoptions[f->unit]; local
902 ccp_options *go = &ccp_gotoptions[f->unit]; local
991 ccp_options *go = &ccp_gotoptions[f->unit]; local
1424 ccp_options *go = &ccp_gotoptions[f->unit]; local
    [all...]
ipcp.c 679 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
754 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
844 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
970 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
1191 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
1686 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
    [all...]
ipv6cp.c 520 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
679 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
816 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
895 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
1174 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
    [all...]
ipxcp.c 75 #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)
    [all...]
  /external/mksh/src/
misc.c 258 Getopt go; local
307 ksh_getopt_reset(&go, GF_ERROR|GF_PLUSOPT);
308 while ((optc = ksh_getopt(argv, &go, opts)) != -1) {
309 set = (go.info & GI_PLUS) ? 0 : 1;
315 array = go.optarg;
321 if (go.optarg == NULL) {
331 i = option(go.optarg);
348 bi_errorf("%s: bad option", go.optarg);
361 chvt(go.optarg);
387 if (!(go.info & GI_MINUSMINUS) && argv[go.optind] &
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
IdleHandlerTest.java 34 public void go() { method in class:IdleHandlerTest.BaseTestHandler
63 public void go() {
64 super.go();
97 public void go() {
98 super.go();
134 public void go() {
135 super.go();
168 public void go() {
169 super.go();
HandlerTester.java 24 public abstract void go(); method in class:HandlerTester
63 go(); method
  /external/webkit/Source/WebCore/page/
History.cpp 66 go(-1);
71 go(context, -1);
76 go(1);
81 go(context, 1);
84 void History::go(int distance) function in class:WebCore::History
92 void History::go(ScriptExecutionContext* context, int distance) function in class:WebCore::History
History.h 51 void go(int distance);
55 void go(ScriptExecutionContext*, int distance);
  /dalvik/vm/mterp/armv5te/
ALT_OP_DISPATCH_FF.S 9 GOTO_OPCODE(ip) @ go to proper extended handler
OP_DISPATCH_FF.S 4 GOTO_OPCODE(ip) @ go to proper extended handler
  /external/valgrind/main/tests/
os_test.c 16 // 'all_OSes' as well as adding go().
29 static Bool go(char* OS) function
57 if (go( argv[1] )) {
arch_test.c 19 // 'all_archs' as well as adding go().
34 static Bool go(char* arch) function
79 if (go( argv[1] )) {
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 24 struct p2p_device *go,
34 go->dialog_token++;
35 if (go->dialog_token == 0)
36 go->dialog_token = 1;
37 p2p_buf_add_public_action_hdr(buf, P2P_DEV_DISC_REQ, go->dialog_token);
41 p2p_buf_add_group_id(buf, go->info.p2p_device_addr, go->oper_ssid,
42 go->oper_ssid_len);
66 "P2P: GO acknowledged Device Discoverability Request - wait "
78 struct p2p_device *go; local
239 struct p2p_device *go; local
    [all...]
  /dalvik/tests/051-thread/src/
Main.java 18 go(); method
22 public static void go() { method in class:Main
  /frameworks/base/services/java/com/android/server/am/
TransferPipe.java 52 void go(IInterface iface, FileDescriptor fd, String prefix, method in interface:TransferPipe.Caller
73 static void go(Caller caller, IInterface iface, FileDescriptor out, method in class:TransferPipe
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT); method
78 static void go(Caller caller, IInterface iface, FileDescriptor out, method in class:TransferPipe
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
92 tp.go(out, timeout);
117 tp.go(out, timeout);
123 void go(FileDescriptor out) throws IOException { method in class:TransferPipe
124 go(out, DEFAULT_TIMEOUT) method
127 void go(FileDescriptor out, long timeout) throws IOException { method in class:TransferPipe
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentQueryMapTest.java 39 abstract void go(); method in class:ContentQueryMapTest.LooperThread
44 go(); method
55 void go() {
  /external/webkit/Source/WebCore/inspector/front-end/
GoToLineDialog.js 34 this._element.className = "go-to-line-dialog";
43 dialogWindow.createChild("label").textContent = WebInspector.UIString("Go to line: ");
55 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/qemu/elff/
dwarf_cu.cc 481 const Elf_Byte* go = stmtl_header_.start; local
482 while (go < stmtl_header_.end) {
483 const Elf_Byte op = *go;
484 go++;
491 go = reinterpret_cast<const Elf_Byte*>
492 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&op_size));
494 const Elf_Byte* ex_op_ptr = go;
543 go += op_size.u32;
558 go = reinterpret_cast<const Elf_Byte*>
559 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&addr_add));
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_cu.cc 481 const Elf_Byte* go = stmtl_header_.start; local
482 while (go < stmtl_header_.end) {
483 const Elf_Byte op = *go;
484 go++;
491 go = reinterpret_cast<const Elf_Byte*>
492 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&op_size));
494 const Elf_Byte* ex_op_ptr = go;
543 go += op_size.u32;
558 go = reinterpret_cast<const Elf_Byte*>
559 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&addr_add))
    [all...]
  /dalvik/vm/mterp/x86/
OP_MONITOR_EXIT.S 16 je .L${opcode}_errNullObject # go if so

Completed in 1157 milliseconds

1 2 3 4 5 6 7