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

1 2

  /external/valgrind/main/tests/
arch_test.c 19 // 'all_archs' as well as adding go().
35 static Bool go(char* arch) function
74 if (go( argv[1] )) {
os_test.c 17 // 'all_OSes' as well as adding go().
57 static Bool go(char* OS, char *min_version) function
82 if (go( argv[1], argv[2] )) {
x86_amd64_features.c 45 static Bool go(char* cpu) function
123 static Bool go(char* cpu) function
140 return go(argv[1]);
s390x_features.c 192 static int go(char *feature, char *cpu) function
276 static int go(char *feature, char *cpu) function
296 rc = go(argv[1], argv[2]);
  /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/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
  /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();
MessageQueueTest.java 35 public void go() { method in class:MessageQueueTest.BaseTestHandler
67 public void go() {
68 super.go();
86 public void go() {
87 super.go();
115 public void go() { method in class:MessageQueueTest.TestFieldIntegrityHandler
150 public void go() {
151 super.go();
BroadcasterTest.java 40 public void go() {
72 public void go() { method in class:BroadcasterTest.Tests2and3
137 public void go() {
172 public void go() {
207 public void go() {
HandlerTester.java 24 public abstract void go(); method in class:HandlerTester
63 go(); method
MessengerTest.java 50 public void go() { method in class:MessengerTest.TestThread
TestHandlerThread.java 30 public abstract void go(); method in class:TestHandlerThread
84 go(); method
  /dalvik/tests/051-thread/src/
Main.java 40 go(); method
44 public static void go() { method in class:Main
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 18 struct p2p_device *go,
28 go->dialog_token++;
29 if (go->dialog_token == 0)
30 go->dialog_token = 1;
31 p2p_buf_add_public_action_hdr(buf, P2P_DEV_DISC_REQ, go->dialog_token);
35 p2p_buf_add_group_id(buf, go->info.p2p_device_addr, go->oper_ssid,
36 go->oper_ssid_len);
60 "P2P: GO acknowledged Device Discoverability Request - wait "
72 struct p2p_device *go; local
233 struct p2p_device *go; local
    [all...]
p2p_invitation.c 102 int go = 0; local
176 &go, group_bssid, &op_freq, persistent);
226 if (go && status == P2P_SC_SUCCESS && !is_zero_ether_addr(group_bssid))
422 "P2P: Invitation for GO Device Address " MACSTR,
447 /* TODO: use device discoverability request through GO */
p2p_go_neg.c 23 return -1; /* both devices want to become GO */
25 /* Use tie breaker bit to determine GO */
191 "peer " MACSTR " to send GO Negotiation Request",
200 "P2P: Sending GO Negotiation Request");
234 "P2P: Building GO Negotiation Response");
358 "P2P: Received GO Negotiation Request from " MACSTR
366 "P2P: Mandatory Capability attribute missing from GO "
377 "P2P: Mandatory GO Intent attribute missing from GO "
387 "missing from GO Negotiation Request")
459 int go; local
716 int go = -1; local
    [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() {
  /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...]
ProviderMap.java 320 tp.go(fd, 2000);
  /frameworks/base/core/java/com/android/server/
ResettableTimeout.java 52 public void go(long milliseconds) method in class:ResettableTimeout
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
ConnectorAdapter.java 68 private AtomicBoolean go = new AtomicBoolean(true); field in class:ConnectorAdapter
111 // can go out in a way that blocks reads.
119 go.set(false);
147 if( !go.get() )
158 while( go.get() ) {
161 if( go.get() ) {
206 while( go.get() ) {
211 if( !go.get() )
KernelAdapter.java 73 private AtomicBoolean go = new AtomicBoolean(true); field in class:KernelAdapter
112 go.set(false);
264 while( go.get() ) {
287 if( !go.get() )
  /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...]

Completed in 689 milliseconds

1 2