HomeSort by relevance Sort by last modified time
    Searched defs:join (Results 426 - 450 of 637) sorted by null

<<11121314151617181920>>

  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_p2p.c 429 int join = 0; local
458 } else if (!os_strcmp(entry.key, "join") &&
460 join = (entry.bool_value == TRUE) ? 1 : 0;
507 persistent_group, 0, join, authorize_only,
643 * No group ID means propose to a peer to join my active group
648 message, "Failed to join to an active group");
    [all...]
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/platform/
JankTestBase.java 219 mThread.join();
  /libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
CharsetTest.java 130 t.join();
    [all...]
  /libcore/libart/src/main/java/java/lang/
Thread.java 183 * The synchronization object responsible for this thread's join/sleep/park operations.
631 * or one of {@code Thread}'s {@code join()} or {@code sleep()} methods will
716 * the receiver while it was in the <code>join()</code> call
720 public final void join() throws InterruptedException { method in class:Thread
735 * the receiver while it was in the <code>join()</code> call
739 public final void join(long millis) throws InterruptedException { method in class:Thread
740 join(millis, 0); method
751 * the receiver while it was in the <code>join()</code> call
755 public final void join(long millis, int nanos) throws InterruptedException { method in class:Thread
764 join(); method
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
Thread.java 641 * or one of {@code Thread}'s {@code join()} or {@code sleep()} methods will
736 * the receiver while it was in the <code>join()</code> call
740 public final void join() throws InterruptedException { method in class:Thread
760 * the receiver while it was in the <code>join()</code> call
764 public final void join(long millis) throws InterruptedException { method in class:Thread
765 join(millis, 0); method
776 * the receiver while it was in the <code>join()</code> call
780 public final void join(long millis, int nanos) throws InterruptedException { method in class:Thread
789 join(); method
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 40 * {@link #join}, or derivatives such as {@link
44 * of new forms of fork/join processing.
52 * asynchronous execution, and {@link #join}, that doesn't proceed
57 * cooperate with fork/join scheduling. Subdividable tasks should also
63 * exceptions, that are rethrown to callers attempting to join
88 * results of a task is {@link #join}, but there are several variants:
92 * equivalent to {@code fork(); join()} but always attempts to begin
101 * <p>In the most typical usages, a fork-join pair act like a call
102 * (fork) and return (join) from a parallel recursive function. As is
105 * b.fork(); b.join(); a.join();} is likely to be substantially mor
671 public final V join() { method in class:ForkJoinTask
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 254 mAcceptThread.join();
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 422 mAcceptThread.join();
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 318 mWorkerThread.join();
320 Log.e(TAG, "join interrupted");
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 245 mWatchdog.join();
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 235 mWatchdog.join();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 331 return '\n'.join(result)
363 p.join()
522 ident = ':'.join(str(i) for i in self._process._identity)
572 def join(self, timeout=None): member in class:BaseManager
574 Join the manager process (if it has been spawned)
576 self._process.join(timeout)
620 process.join(timeout=0.2)
626 process.join(timeout=0.1)
945 return 'Namespace(%s)' % str.join(', ', temp)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 331 return '\n'.join(result)
363 p.join()
522 ident = ':'.join(str(i) for i in self._process._identity)
572 def join(self, timeout=None): member in class:BaseManager
574 Join the manager process (if it has been spawned)
576 self._process.join(timeout)
620 process.join(timeout=0.2)
626 process.join(timeout=0.1)
945 return 'Namespace(%s)' % str.join(', ', temp)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 270 values = join('|', sorted);
820 static String join(char delimiter, Collection<String> strings) { method in class:BaseViewRule
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java 728 job.join();
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Camera.java 966 join(); method
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayWithCompositionTest.java 213 renderingThread.join(20000);
510 mEncodingThread.join();
641 mCompositionThread.join();
    [all...]
DecodeEditEncodeTest.java 130 th.join();
    [all...]
EncodeDecodeTest.java 149 th.join();
198 th.join();
    [all...]
ExtractDecodeEditEncodeMuxTest.java 171 th.join();
    [all...]
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 205 mServerThread.join();
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 446 cancellationThread.join();
    [all...]
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java     [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DatagramSocketTest.java 817 protected void join(InetAddress arg0) throws IOException { method in class:DatagramSocketTest.testDatagramSocketImpl
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 374 LineJoin join; local
375 if (!parseLineJoin(s, join))
377 if (state().m_lineJoin == join)
380 modifiableState().m_lineJoin = join;
384 c->setLineJoin(join);
    [all...]

Completed in 564 milliseconds

<<11121314151617181920>>