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

1 2 3

  /external/srec/srec_jni/
android_speech_srec_MicrophoneInputStream.cpp 57 android::AudioRecord* ar = new android::AudioRecord( local
61 if (ar == NULL) {
65 status_t s = ar->initCheck();
67 delete ar;
68 ar = NULL;
72 return (int)ar;
  /system/core/libacc/tests/data/
brackets.c 1 void testBrackets(int* ar, int len) {
5 ar[i] = i;
8 if (ar[i] != i) {
9 printf("error: [%d] %d != %d\n", i, ar[i], i);
38 int* ar = (int*) malloc(100); local
39 testBrackets(ar, 25);
40 free(ar);
46 int* ar = (int*) malloc(lenX * lenY * 4); local
50 ar2D[i] = ar + lenY * i;
53 free(ar);
    [all...]
  /system/media/opensles/libopensles/
locks.c 182 CAudioRecorder* ar = (CAudioRecorder *) this; local
183 android_audioRecorder_useEventMask(ar);
android_AudioRecorder.cpp 37 SLresult audioRecorder_setPreset(CAudioRecorder* ar, SLuint32 recordPreset) {
60 if (SL_OBJECT_STATE_UNREALIZED != ar->mObject.mState) {
64 ar->mRecordSource = newRecordSource;
71 SLresult audioRecorder_getPreset(CAudioRecorder* ar, SLuint32* pPreset) {
74 switch (ar->mRecordSource) {
100 void audioRecorder_handleNewPos_lockRecord(CAudioRecorder* ar) {
105 interface_lock_shared(&ar->mRecord);
106 callback = ar->mRecord.mCallback;
107 callbackPContext = ar->mRecord.mContext;
108 interface_unlock_shared(&ar->mRecord)
206 CAudioRecorder *ar = (CAudioRecorder *)user; local
    [all...]
  /external/zlib/contrib/masmx64/
inffas8664.c 83 /* ar offset register */
111 type_ar ar; local
127 ar.in = strm->next_in;
128 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
129 ar.out = strm->next_out;
130 ar.beg = ar.out - (start - strm->avail_out);
131 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
    [all...]
  /external/zlib/contrib/inflate86/
inffas86.c 78 /* ar offset register */
98 } ar; local
110 ar.in = strm->next_in;
111 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
112 ar.out = strm->next_out;
113 ar.beg = ar.out - (start - strm->avail_out);
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CLIRListPreference.java 125 AsyncResult ar = (AsyncResult) msg.obj; local
133 if (ar.exception != null) {
134 if (DBG) Log.d(LOG_TAG, "handleGetCLIRResponse: ar.exception="+ar.exception);
135 tcpListener.onException(CLIRListPreference.this, (CommandException) ar.exception);
136 } else if (ar.userObj instanceof Throwable) {
139 int clirArray[] = (int[]) ar.result;
151 AsyncResult ar = (AsyncResult) msg.obj; local
153 if (ar.exception != null) {
154 if (DBG) Log.d(LOG_TAG, "handleSetCallWaitingResponse: ar.exception="+ar.exception)
    [all...]
CallWaitingCheckBoxPreference.java 82 AsyncResult ar = (AsyncResult) msg.obj; local
92 if (ar.exception != null) {
94 Log.d(LOG_TAG, "handleGetCallWaitingResponse: ar.exception=" + ar.exception);
98 (CommandException)ar.exception);
100 } else if (ar.userObj instanceof Throwable) {
104 setChecked(((int[]) ar.result)[0] == 1);
109 AsyncResult ar = (AsyncResult) msg.obj; local
111 if (ar.exception != null) {
112 if (DBG) Log.d(LOG_TAG, "handleSetCallWaitingResponse: ar.exception=" + ar.exception)
    [all...]
CdmaSubscriptionListPreference.java 118 AsyncResult ar = (AsyncResult) msg.obj; local
120 if (ar.exception == null) {
122 int cdmaSubscriptionMode = Integer.valueOf((String) ar.userObj).intValue();
CdmaSystemSelectListPreference.java 117 AsyncResult ar = (AsyncResult) msg.obj; local
119 if (ar.exception == null) {
120 int statusCdmaRoamingMode = ((int[])ar.result)[0];
147 AsyncResult ar = (AsyncResult) msg.obj; local
149 if ((ar.exception == null) && (getValue() != null)) {
CdmaVoicePrivacyCheckBoxPreference.java 63 AsyncResult ar = (AsyncResult) msg.obj; local
65 if (ar.exception != null) {
66 if (DBG) Log.d(LOG_TAG, "handleGetVPResponse: ar.exception=" + ar.exception);
70 final int enable = ((int[]) ar.result)[0];
79 AsyncResult ar = (AsyncResult) msg.obj; local
81 if (ar.exception != null) {
82 if (DBG) Log.d(LOG_TAG, "handleSetVPResponse: ar.exception=" + ar.exception);
Use2GOnlyCheckBoxPreference.java 82 AsyncResult ar = (AsyncResult) msg.obj; local
84 if (ar.exception == null) {
85 int type = ((int[])ar.result)[0];
90 Log.i(LOG_TAG, "get preferred network type, exception="+ar.exception);
96 AsyncResult ar = (AsyncResult) msg.obj; local
98 if (ar.exception != null) {
102 Log.i(LOG_TAG, "set preferred network type, exception=" + ar.exception);
CallForwardEditPreference.java 176 AsyncResult ar = (AsyncResult) msg.obj; local
179 if (ar.exception != null) {
180 if (DBG) Log.d(LOG_TAG, "handleGetCFResponse: ar.exception=" + ar.exception);
182 (CommandException) ar.exception);
184 if (ar.userObj instanceof Throwable) {
187 CallForwardInfo cfInfoArray[] = (CallForwardInfo[]) ar.result;
238 AsyncResult ar = (AsyncResult) msg.obj; local
240 if (ar.exception != null) {
241 if (DBG) Log.d(LOG_TAG, "handleSetCFResponse: ar.exception=" + ar.exception)
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
RepoSource.java 622 Element ar = appendChild(newArchives, ns, prefix, local
624 ar.setAttributeNS(ns, SdkRepository.ATTR_OS, os.getXmlName());
625 ar.setAttributeNS(ns, SdkRepository.ATTR_ARCH, arch.getXmlName());
627 appendChild(ar, ns, prefix, SdkRepository.NODE_URL, url);
628 appendChild(ar, ns, prefix, SdkRepository.NODE_SIZE, Long.toString(size));
629 Element cs = appendChild(ar, ns, prefix, SdkRepository.NODE_CHECKSUM, sha1);
    [all...]
  /external/chromium/third_party/icu/source/i18n/
basictz.cpp 440 AnnualTimeZoneRule *ar = (AnnualTimeZoneRule*)toRule; local
441 ar->getFirstStart(tzt.getFrom()->getRawOffset(), tzt.getFrom()->getDSTSavings(), firstStart);
444 filteredRules->addElement(ar->clone(), status);
453 ar->getName(name);
454 AnnualTimeZoneRule *newAr = new AnnualTimeZoneRule(name, ar->getRawOffset(), ar->getDSTSavings(),
455 *(ar->getRule()), year, ar->getEndYear());
462 if (ar->getEndYear() == AnnualTimeZoneRule::MAX_YEAR) {
465 if (ar->getDSTSavings() == 0)
    [all...]
coll.cpp 164 UnicodeString ar; local
166 actualReturn = &ar;
  /external/icu4c/i18n/
basictz.cpp 452 AnnualTimeZoneRule *ar = (AnnualTimeZoneRule*)toRule; local
453 ar->getFirstStart(tzt.getFrom()->getRawOffset(), tzt.getFrom()->getDSTSavings(), firstStart);
456 filteredRules->addElement(ar->clone(), status);
465 ar->getName(name);
466 AnnualTimeZoneRule *newAr = new AnnualTimeZoneRule(name, ar->getRawOffset(), ar->getDSTSavings(),
467 *(ar->getRule()), year, ar->getEndYear());
474 if (ar->getEndYear() == AnnualTimeZoneRule::MAX_YEAR) {
477 if (ar->getDSTSavings() == 0)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
AdnRecordCache.java 82 AsyncResult ar = new AsyncResult(null, null, new RuntimeException("AdnCache reset")); local
83 notifyWaiters(waiters, ar);
290 notifyWaiters(ArrayList<Message> waiters, AsyncResult ar) {
299 AsyncResult.forMessage(waiter, ar.result, ar.exception);
308 AsyncResult ar; local
314 ar = (AsyncResult) msg.obj;
321 if (ar.exception == null) {
322 adnLikeFiles.put(efid, (ArrayList<AdnRecord>) ar.result);
324 notifyWaiters(waiters, ar);
    [all...]
AdnRecordLoader.java 133 AsyncResult ar; local
140 ar = (AsyncResult)(msg.obj);
141 adn = (AdnRecord)(ar.userObj);
143 if (ar.exception != null) {
145 ar.exception);
148 int[] recordSize = (int[])ar.result;
156 ar.exception);
163 ar.exception);
173 ar = (AsyncResult)(msg.obj);
174 if (ar.exception != null)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ConcurrentSkipListMapTest.java 128 Object[] ar = s.toArray(); local
129 assertTrue(s.containsAll(Arrays.asList(ar)));
130 assertEquals(5, ar.length);
131 ar[0] = m10;
132 assertFalse(s.containsAll(Arrays.asList(ar)));
141 Object[] ar = s.toArray(); local
142 assertEquals(5, ar.length);
143 assertTrue(s.containsAll(Arrays.asList(ar)));
144 ar[0] = m10;
145 assertFalse(s.containsAll(Arrays.asList(ar)));
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
X509KeyManagerTest.java 698 String[] ar = {client}; local
    [all...]
  /external/chromium/third_party/icu/source/common/
locmap.c 102 static const ILcidPosixElement ar[] = { variable
103 {0x01, "ar"},
578 ILCID_POSIX_MAP(ar), /* ar Arabic 0x01 */
  /external/webkit/WebKitTools/android/flex-2.5.4a/
dfa.c 112 register int ar = assoc_rule[ns]; local
114 if ( type == STATE_NORMAL || rule_type[ar] != RULE_VARIABLE )
131 rule_linenum[ar] );
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java 236 AsyncResult ar; local
239 ar = (AsyncResult) (msg.obj);
240 onSetComplete(ar);
258 onSetComplete(AsyncResult ar){
262 if (ar.exception != null) {
264 if (ar.exception instanceof CommandException) {
265 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
IconLoader.java 132 AsyncResult ar; local
137 ar = (AsyncResult) msg.obj;
138 if (handleImageDescriptor((byte[]) ar.result)) {
145 ar = (AsyncResult) msg.obj;
146 byte[] rawData = ((byte[]) ar.result);
157 ar = (AsyncResult) msg.obj;
158 byte [] clut = ((byte[]) ar.result);

Completed in 516 milliseconds

1 2 3