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

1 2 3 4 5 6 7 8 9

  /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...]
  /system/media/opensles/libopensles/
android_AudioRecorder.h 20 extern SLresult android_audioRecorder_checkSourceSinkSupport(CAudioRecorder* ar);
22 extern SLresult android_audioRecorder_create(CAudioRecorder* ar);
31 extern SLresult android_audioRecorder_setConfig(CAudioRecorder* ar, const SLchar *configKey,
43 extern SLresult android_audioRecorder_getConfig(CAudioRecorder* ar, const SLchar *configKey,
46 extern SLresult android_audioRecorder_realize(CAudioRecorder* ar, SLboolean async);
48 extern void android_audioRecorder_destroy(CAudioRecorder* ar);
54 extern void android_audioRecorder_setRecordState(CAudioRecorder* ar, SLuint32 state);
56 extern void android_audioRecorder_useEventMask(CAudioRecorder *ar);
58 extern void android_audioRecorder_getPosition(CAudioRecorder *ar, SLmillisecond *pPosMsec);
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...]
  /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...]
  /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...]
  /external/elfutils/libelf/
elf_getarhdr.c 43 if (parent->state.ar.elf_ar_hdr.ar_name == NULL
52 return &parent->state.ar.elf_ar_hdr;
elf_rand.c 38 elf->state.ar.offset = elf->start_offset + offset;
44 elf->state.ar.elf_ar_hdr.ar_name = NULL;
elf_getarsym.c 51 *ptr = elf->state.ar.ar_sym_num;
53 if (elf->state.ar.ar_sym == (Elf_Arsym *) -1l)
60 result = elf->state.ar.ar_sym;
75 elf->state.ar.ar_sym = (Elf_Arsym *) -1l;
81 if (pread (elf->fildes, &elf->state.ar.ar_hdr,
91 index_hdr = &elf->state.ar.ar_hdr;
164 elf->state.ar.ar_sym = (Elf_Arsym *) malloc (ar_sym_len);
165 if (elf->state.ar.ar_sym != NULL)
178 newp = (Elf_Arsym *) realloc (elf->state.ar.ar_sym,
182 free (elf->state.ar.ar_sym)
    [all...]
elf_next.c 44 parent->state.ar.offset += (sizeof (struct ar_hdr)
45 + ((parent->state.ar.elf_ar_hdr.ar_size + 1)
elf_end.c 59 free (elf->state.ar.ar_sym);
60 elf->state.ar.ar_sym = NULL;
62 if (elf->state.ar.children != NULL)
79 if (parent->state.ar.children == elf)
80 parent->state.ar.children = elf->next;
83 struct Elf *child = parent->state.ar.children;
98 if (elf->state.ar.long_names != NULL)
99 free (elf->state.ar.long_names);
elf_readall.c 33 Elf *child = elf->state.ar.children;
42 child->state.ar.offset -= offset;
102 elf->state.ar.offset -= elf->start_offset;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SIMRecords.java 463 AsyncResult ar; local
483 ar = (AsyncResult)msg.obj;
485 if (ar.exception != null) {
486 Log.e(LOG_TAG, "Exception querying IMSI, Exception:" + ar.exception);
490 imsi = (String) ar.result;
525 ar = (AsyncResult)msg.obj;
526 data = (byte[]) ar.result;
529 if (ar.exception == null) {
564 ar = (AsyncResult)msg.obj;
566 if (ar.exception != null)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
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...]
IccFileHandler.java 289 AsyncResult ar; local
305 ar = (AsyncResult) msg.obj;
306 lc = (LoadLinearFixedContext) ar.userObj;
307 result = (IccIoResult) ar.result;
312 sendResult(response, result.payload, ar.exception);
316 ar = (AsyncResult) msg.obj;
317 response = (Message) ar.userObj;
318 result = (IccIoResult) ar.result;
322 sendResult(response, result.payload, ar.exception);
326 ar = (AsyncResult)msg.obj
    [all...]
IccCard.java 382 private void getIccCardStatusDone(AsyncResult ar) {
383 if (ar.exception != null) {
386 + "never return an error", ar.exception);
389 handleIccCardStatus((IccCardStatus) ar.result);
433 * @param ar is asyncResult of Query_Facility_Locked
435 private void onQueryFdnEnabled(AsyncResult ar) {
436 if(ar.exception != null) {
437 if(mDbg) log("Error in querying facility lock:" + ar.exception);
441 int[] ints = (int[])ar.result;
452 * @param ar is asyncResult of Query_Facility_Locke
    [all...]
IccPhoneBookInterfaceManager.java 51 AsyncResult ar;
55 ar = (AsyncResult) msg.obj;
57 if (ar.exception == null) {
58 recordSize = (int[])ar.result;
70 ar = (AsyncResult) msg.obj;
72 success = (ar.exception == null);
77 ar = (AsyncResult)msg.obj;
79 if (ar.exception == null) {
80 records = (List<AdnRecord>) ar.result;
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...]
  /external/qemu/distrib/zlib-1.2.3/
Makefile 10 ar ru $(ZLIB_LIB) $(MY_LDLIBS) $(ZLIB_OBJS)
  /packages/apps/Phone/src/com/android/phone/
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);
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...]
  /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;
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
RuimRecords.java 184 AsyncResult ar; local
206 ar = (AsyncResult)msg.obj;
207 String localTemp[] = (String[])ar.result;
208 if (ar.exception != null) {
223 ar = (AsyncResult)msg.obj;
224 data = (byte[])ar.result;
226 if (ar.exception != null) {
237 ar = (AsyncResult)msg.obj;
238 if (ar.exception != null) {
239 Log.i(LOG_TAG, "RuimRecords update failed", ar.exception)
    [all...]
  /cts/tools/annotation-helper/src/spechelper/
Test.java 24 public <E> void bla(Comparable<Long> comp1, Comparator<Comparable<String>> comp2, E arg, int a, byte[] b, char[] c, double d, float f, boolean bo, int[][] ar, String[][] arr,

Completed in 257 milliseconds

1 2 3 4 5 6 7 8 9