HomeSort by relevance Sort by last modified time
    Searched defs:share (Results 26 - 50 of 150) sorted by null

12 3 4 5 6

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPRawTestCase.java 26 package org.apache.harmony.jpda.tests.jdwp.share;
29 import org.apache.harmony.jpda.tests.share.JPDALogWriter;
30 import org.apache.harmony.jpda.tests.share.JPDATestOptions;
JDWPSyncTestCase.java 26 package org.apache.harmony.jpda.tests.jdwp.share;
28 import org.apache.harmony.jpda.tests.share.JPDADebuggeeSynchronizer;
JDWPInvokeMethodWithSuspensionTestCase.java 19 package org.apache.harmony.jpda.tests.jdwp.share;
25 import org.apache.harmony.jpda.tests.jdwp.share.debuggee.InvokeMethodWithSuspensionDebuggee;
26 import org.apache.harmony.jpda.tests.share.JPDADebuggeeSynchronizer;
JDWPProxyTestCase.java 19 package org.apache.harmony.jpda.tests.jdwp.share;
24 import org.apache.harmony.jpda.tests.jdwp.share.debuggee.ProxyDebuggee;
25 import org.apache.harmony.jpda.tests.share.JPDADebuggeeSynchronizer;
JDWPUnitDebuggeeWrapper.java 26 package org.apache.harmony.jpda.tests.jdwp.share;
33 import org.apache.harmony.jpda.tests.share.JPDATestOptions;
JDWPUnitDebuggeeProcessWrapper.java 23 package org.apache.harmony.jpda.tests.jdwp.share;
40 import org.apache.harmony.jpda.tests.share.JPDATestOptions;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/debuggee/
ProxyDebuggee.java 19 package org.apache.harmony.jpda.tests.jdwp.share.debuggee;
21 import org.apache.harmony.jpda.tests.share.JPDADebuggeeSynchronizer;
22 import org.apache.harmony.jpda.tests.share.SyncDebuggee;
InvokeMethodDebuggee.java 26 package org.apache.harmony.jpda.tests.jdwp.share.debuggee;
28 import org.apache.harmony.jpda.tests.share.JPDADebuggeeSynchronizer;
29 import org.apache.harmony.jpda.tests.share.SyncDebuggee;
83 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.share.debuggee.InvokeMethodDebuggee$testClass1");
84 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.share.debuggee.testClass2");
85 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.share.debuggee.testClass3");
92 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.share.debuggee.InvokeMethodDebuggee(#1)");
95 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.share.debuggee.InvokeMethodDebuggee(#2)");
InvokeMethodWithSuspensionDebuggee.java 19 package org.apache.harmony.jpda.tests.jdwp.share.debuggee;
21 import org.apache.harmony.jpda.tests.jdwp.share.JDWPInvokeMethodWithSuspensionTestCase;
22 import org.apache.harmony.jpda.tests.share.JPDADebuggeeSynchronizer;
23 import org.apache.harmony.jpda.tests.share.SyncDebuggee;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
Debuggee.java 26 package org.apache.harmony.jpda.tests.share;
JPDALogWriter.java 26 package org.apache.harmony.jpda.tests.share;
JPDADebuggeeSynchronizer.java 26 package org.apache.harmony.jpda.tests.share;
  /external/curl/tests/libtest/
lib506.c 31 CURLSH *share; member in struct:Tdata
55 what = "share";
91 what = "share";
147 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share);
180 CURLSH *share; local
196 /* prepare share */
198 share = curl_share_init();
199 if(!share) {
207 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock);
211 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock)
    [all...]
lib1521.c 107 CURLSH *share = NULL; local
131 share = curl_share_init();
132 if(!share) {
    [all...]
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 228 GLXContext share = local
232 ASSERT_NE((GLXContext) 0, share);
234 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, share,
237 struct glx_context *glx_ctx = (struct glx_context *) share;
398 struct glx_context *share = (struct glx_context *) first; local
400 EXPECT_EQ(share->xid, ctx->share_xid);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBatch.java 83 * Called to notify when a share is added into the batch
89 * Called to notify when a share is deleted from the batch
121 * Add one share into the batch.
137 * 2) Go through mShares list and mark all incomplete share as CANCELED status
166 /** check if a specific share is in this batch */
192 * @return BluetoothOppShareInfo, for the first pending share, or null if
197 BluetoothOppShareInfo share = mShares.get(i); local
198 if (share.mStatus == BluetoothShare.STATUS_PENDING) {
199 return share;
  /toolchain/binutils/binutils-2.27/gprof/
cg_arcs.c 168 double share, prop_share; local
214 share = arc->time + arc->child_time;
215 parent->cg.child_time += share;
218 prop_share = parent->cg.prop.fract * share;
225 /* add this share to the parent's cycle header, if any: */
228 parent->cg.cyc.head->cg.child_time += share;
238 printf ("\n[prop_time] share %f\n", share));
  /frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
NekoLand.java 251 holder.share.setOnClickListener(new View.OnClickListener() {
327 private final View share; field in class:NekoLand.CatHolder
335 share = itemView.findViewById(android.R.id.shareText);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 240 double share; local
244 share = 1.0;
246 share = sum / numTargets;
248 String value = formatFloatAttribute((float) share);
    [all...]
  /external/clang/test/SemaTemplate/
friend-template.cpp 260 future<void> share; member in struct:RedeclUnrelated::S
  /external/libevent/
bufferevent_ratelim.c 231 ev_ssize_t share; local
243 share = 0;
247 share = LIM(g->rate_limit) / g->n_members;
248 if (share < g->min_share)
249 share = g->min_share;
252 CLAMPTO(share);
706 size_t share)
708 if (share > EV_SSIZE_MAX)
711 g->configured_min_share = share;
713 /* Can't set share to less than the one-tick maximum. IOW, at stead
    [all...]
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
segment.c 559 " _____address______ ____length____ ____offset____ prot share name\n";
565 char *protection, *share, *name; local
586 share = (segp->seg_flags & MAP_SHARED) ? "shared " : "private";
588 share = "default";
600 segp->seg_offset, protection, share, name);
605 segp->seg_offset, protection, share, name);
  /packages/apps/DocumentsUI/src/com/android/documentsui/
MenuManager.java 120 MenuItem share = menu.findItem(R.id.dir_menu_share); local
126 updateShare(share, selectionDetails);
269 protected void updateShare(MenuItem share, SelectionDetails selectionDetails) {
270 share.setVisible(false);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
nlm_prot.h 134 nlm_share share; member in struct:nlm_shareargs
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
egl.cpp 428 EGLContext share = share_context; local
429 if (share) share = ((EGLWrapperContext *)share_context)->aglContext;
455 EGLContext ctx = getDispatch()->eglCreateContext(dpy, config, share, attrib);

Completed in 2076 milliseconds

12 3 4 5 6