HomeSort by relevance Sort by last modified time
    Searched full:exchange (Results 1 - 25 of 1605) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Exchange/
proguard.flags 8 -keepclasseswithmembers class com.android.exchange.adapter.Parser {
12 -keepclasseswithmembers class com.android.exchange.provider.GalResult {
13 *** addGalData(com.android.exchange.provider.GalResult$GalData);
17 -keepclasseswithmembers class com.android.exchange.provider.MailboxUtilities {
AndroidManifest.xml 19 package="com.android.exchange"
72 android:name="Exchange"
73 android:requiredAccountType="com.android.exchange"
78 android:name="com.android.exchange.service.EasService"
89 android:name="com.android.exchange.service.EmailSyncAdapterService"
101 android:name="com.android.exchange.service.ContactsSyncAdapterService"
113 android:name="com.android.exchange.service.CalendarSyncAdapterService"
124 android:name="com.android.exchange.provider.ExchangeDirectoryProvider"
125 android:authorities="com.android.exchange.directory.provider"
  /libcore/jsr166-tests/src/test/java/jsr166/
ExchangerTest.java 21 * exchange exchanges objects across two threads
27 assertSame(one, e.exchange(two));
28 assertSame(two, e.exchange(one));
32 assertSame(two, e.exchange(one));
33 assertSame(one, e.exchange(two));
41 * timed exchange exchanges objects across two threads
47 assertSame(one, e.exchange(two, LONG_DELAY_MS, MILLISECONDS));
48 assertSame(two, e.exchange(one, LONG_DELAY_MS, MILLISECONDS));
52 assertSame(two, e.exchange(one, LONG_DELAY_MS, MILLISECONDS));
53 assertSame(one, e.exchange(two, LONG_DELAY_MS, MILLISECONDS))
    [all...]
  /external/libcxx/test/utilities/utility/exchange/
Android.mk 17 test_makefile := external/libcxx/test/utilities/utility/exchange/Android.mk
19 test_name := utilities/utility/exchange/exchange
20 test_src := exchange.pass.cpp
exchange.pass.cpp 12 // exchange
23 assert ( std::exchange ( v, 23 ) == 12 );
25 assert ( std::exchange ( v, 67.2 ) == 23 );
28 assert ((std::exchange<int, float> ( v, {} )) == 67 );
35 assert ( !std::exchange ( b, true ));
43 assert ( std::exchange ( s3, s2 ) == s1 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
49 assert ( std::exchange ( s3, {} ) == s2 );
53 assert ( std::exchange ( s3, "" ) == s2 );
  /external/clang/test/CodeGen/
ms-intrinsics.c 11 // CHECK: %[[EXCHANGE:[0-9]+]] = atomicrmw xchg i32* %[[TARGET]], i32 %[[VALUE]] seq_cst
12 // CHECK: %[[RESULT:[0-9]+]] = inttoptr i32 %[[EXCHANGE]] to i8*
17 void *Exchange, void *Comparand) {
18 return _InterlockedCompareExchangePointer(Destination, Exchange, Comparand);
21 // CHECK: define{{.*}}i8* @test_InterlockedCompareExchangePointer(i8** %Destination, i8* %Exchange, i8* %Comparand){{.*}}{
23 // CHECK: %[[EXCHANGE:[0-9]+]] = ptrtoint i8* %Exchange to i32
25 // CHECK: %[[XCHG:[0-9]+]] = cmpxchg volatile i32* %[[DEST:[0-9]+]], i32 %[[COMPARAND:[0-9]+]], i32 %[[EXCHANGE:[0-9]+]] seq_cst seq_cst
36 // CHECK: %[[EXCHANGE:[0-9]+]] = atomicrmw xchg i32* %Target, i32 %Value seq_cst
37 // CHECK: ret i32 %[[EXCHANGE:[0-9]+]
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/exchange/
exchange.pass.cpp 12 // exchange
23 assert ( std::exchange ( v, 23 ) == 12 );
25 assert ( std::exchange ( v, 67.2 ) == 23 );
28 assert ((std::exchange<int, float> ( v, {} )) == 67 );
35 assert ( !std::exchange ( b, true ));
43 assert ( std::exchange ( s3, s2 ) == s1 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
49 assert ( std::exchange ( s3, {} ) == s2 );
53 assert ( std::exchange ( s3, "" ) == s2 );
  /packages/apps/Exchange/build/src/com/android/exchange/
Configuration.java 17 package com.android.exchange;
20 public static final String EXCHANGE_ACCOUNT_MANAGER_TYPE = "com.android.exchange";
23 public static final String EXCHANGE_GAL_AUTHORITY = "com.android.exchange.directory.provider";
  /dalvik/dx/
README.txt 1 Home of Dalvik eXchange, the thing that takes in class files and
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSearchGal.java 1 package com.android.exchange.eas;
6 import com.android.exchange.CommandStatusException;
7 import com.android.exchange.EasResponse;
8 import com.android.exchange.adapter.GalParser;
9 import com.android.exchange.adapter.Serializer;
14 import com.android.exchange.adapter.Tags;
15 import com.android.exchange.provider.GalResult;
EasSettings.java 17 package com.android.exchange.eas;
19 import com.android.exchange.EasResponse;
20 import com.android.exchange.adapter.Serializer;
21 import com.android.exchange.adapter.SettingsParser;
22 import com.android.exchange.adapter.Tags;
29 * Performs an Exchange Settings request to the server to communicate our device information.
38 * requirement for communicating device info for some versions of Exchange.
EasSyncCollectionTypeBase.java 1 package com.android.exchange.eas;
7 import com.android.exchange.Eas;
8 import com.android.exchange.adapter.AbstractSyncParser;
9 import com.android.exchange.adapter.Serializer;
10 import com.android.exchange.adapter.Tags;
38 * {@link com.android.exchange.adapter.Tags#SYNC_COLLECTION} element.
73 * @param s The {@link com.android.exchange.adapter.Serializer} for this sync request.
  /packages/apps/Exchange/tests/
AndroidManifest.xml 19 package="com.android.exchange.tests"
33 "adb shell am instrument -w com.android.exchange.tests/android.support.test.runner.AndroidJUnitRunner"
36 android:targetPackage="com.android.exchange"
37 android:label="Tests for Exchange."/>
  /external/chromium_org/net/quic/crypto/
key_exchange.h 19 // key-exchange primitive.
36 // order to complete a key exchange. The returned StringPiece is a reference
41 // tag returns the tag value that identifies this key exchange function.
  /packages/apps/Exchange/src/com/android/exchange/
EasCertificateRequestor.java 18 package com.android.exchange;
25 * A subclass of the {@link CertificateRequestor} so that the Exchange process
30 * actually use the certificate. Since the Exchange process needs to establish connections and use
SettingsRedirector.java 18 package com.android.exchange;
31 * This is needed since the Exchange service runs as a separate UID and is therefore tracked as
33 * Exchange should really go to Email where the real settings are.
Exchange.java 17 package com.android.exchange;
25 public class Exchange extends Application {
ExchangeBroadcastReceiver.java 3 package com.android.exchange;
17 import com.android.exchange.R;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
SendMailParser.java 1 package com.android.exchange.adapter;
  /packages/services/Telephony/src/com/android/phone/
ProcessOutgoingCallTest.java 71 String exchange = number.substring(length - 7, length - 4); local
72 Log.v(TAG, "exchange = " + exchange);
73 if (exchange.equals("555")) {
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 16 * {@link #exchange exchange} method, matches with a partner thread,
40 * currentBuffer = exchanger.exchange(currentBuffer);
53 * currentBuffer = exchanger.exchange(currentBuffer);
66 * successfully exchange objects via an {@code Exchanger}, actions
67 * prior to the {@code exchange()} in each thread
69 * those subsequent to a return from the corresponding {@code exchange()}
79 * Overview: The core algorithm is, for an exchange "slot",
109 * able to exchange items. That is, we cannot completely partition
137 * while trying to exchange. By nature of the above algorithm, th
534 public V exchange(V x) throws InterruptedException { method in class:Exchanger
588 public V exchange(V x, long timeout, TimeUnit unit) method in class:Exchanger
    [all...]
  /external/kernel-headers/original/uapi/scsi/fc/
fc_fs.h 47 __be16 fh_ox_id; /* originator exchange ID */
48 __be16 fh_rx_id; /* responder exchange ID */
209 * Exchange IDs.
211 #define FC_XID_UNKNOWN 0xffff /* unknown exchange ID */
212 #define FC_XID_MIN 0x0 /* supported min exchange ID */
213 #define FC_XID_MAX 0xfffe /* supported max exchange ID */
218 #define FC_FC_EX_CTX (1 << 23) /* sent by responder to exchange */
220 #define FC_FC_FIRST_SEQ (1 << 21) /* first sequence of this exchange */
221 #define FC_FC_LAST_SEQ (1 << 20) /* last sequence of this exchange */
226 #define FC_FC_X_ID_REASS (1 << 15) /* exchange ID has been changed *
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
atomic-1.ll 21 define i32 @exchange(i32* %mem, i32 %val) nounwind {
22 ; CHECK-LABEL: exchange:
atomic-2.ll 21 define i64 @exchange(i64* %mem, i64 %val) nounwind {
22 ; CHECK-LABEL: exchange:
  /external/smack/src/org/jivesoftware/smackx/
RosterExchangeListener.java 27 * A listener that is fired anytime a roster exchange is received.
34 * Called when roster entries are received as part of a roster exchange.

Completed in 5949 milliseconds

1 2 3 4 5 6 7 8 91011>>