HomeSort by relevance Sort by last modified time
    Searched defs:ap (Results 76 - 100 of 416) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/sdklauncher/
sdklauncher.c 36 va_list ap; local
37 va_start(ap, msg);
40 vfprintf(stderr, msg, ap);
43 va_end(ap);
  /system/core/debuggerd/
utility.c 37 va_list ap; local
38 va_start(ap, fmt);
42 vsnprintf(buf, sizeof(buf), fmt, ap);
48 __android_log_vprint(ANDROID_LOG_INFO, "DEBUG", fmt, ap);
50 va_end(ap);
  /frameworks/base/core/java/android/app/
MediaRouteActionProvider.java 145 RouterCallback(MediaRouteActionProvider ap) {
146 mAp = new WeakReference<MediaRouteActionProvider>(ap);
151 final MediaRouteActionProvider ap = mAp.get(); local
152 if (ap == null) {
157 ap.refreshVisibility();
162 final MediaRouteActionProvider ap = mAp.get(); local
163 if (ap == null) {
168 ap.refreshVisibility();
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 110 bool FileUtil::doVprintf(bool fileOnly, int logLevel, const char *fmt, va_list ap)
122 size = vsnprintf(mBuffer + start, mBufferSize - start - 2, fmt, ap); // 2 for \n\0
156 va_list ap; local
157 va_start(ap, fmt);
158 bool result = doVprintf(false, -1, fmt, ap);
159 va_end(ap);
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
EncryptedPrivateKeyInfo_ImplTest.java 108 AlgorithmParameters ap = AlgorithmParameters local
111 ap.init(EncryptedPrivateKeyInfoData.getParametersEncoding(
113 EncryptedPrivateKeyInfo epki = new EncryptedPrivateKeyInfo(ap,
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 72 AlgorithmParameters ap = new DummyAlgorithmParameters(null, p, null); local
73 assertNull(ap.getAlgorithm());
76 ap = new DummyAlgorithmParameters(null, p, "AAA");
77 assertEquals("AAA", ap.getAlgorithm());
169 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC"); local
171 checkUnititialized(ap);
173 ap.init(new MyAlgorithmParameterSpec());
175 checkAP(ap, p);
184 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", local
187 checkUnititialized(ap);
258 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", p); local
272 AlgorithmParameters ap = new DummyAlgorithmParameters(null, null, "AAA"); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/
ServicesTest.java 39 Provider ap = new AnotherProvider(); local
40 Services.initServiceInfo(ap);
  /external/chromium/chrome/browser/sync/notifier/
chrome_system_resources.cc 115 va_list ap; local
116 va_start(ap, format);
118 base::StringAppendV(&result, format, ap);
120 va_end(ap);
  /external/freetype/src/base/
ftdebug.c 56 va_list ap; local
59 va_start( ap, fmt );
60 vfprintf( stderr, fmt, ap );
61 va_end( ap );
70 va_list ap; local
73 va_start( ap, fmt );
74 vfprintf( stderr, fmt, ap );
75 va_end( ap );
  /external/ipsec-tools/src/racoon/
logger.c 142 va_list ap; local
151 va_start(ap, fmt);
152 vfprintf(fp, fmt, ap);
153 va_end(ap);
161 log_vaprint(struct log *p, const char *fmt, va_list ap)
170 vfprintf(fp, fmt, ap);
232 va_list ap; local
233 va_start(ap, fmt);
234 log_vaprint(l, fmt, ap);
235 va_end(ap);
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
android_logmsg.cpp 47 va_list ap; local
51 va_start (ap, fmt_str);
52 vsnprintf (buffer, BTE_LOG_MAX_SIZE, fmt_str, ap);
53 va_end (ap);
  /external/libnfc-nci/src/adaptation/
bte_logmsg.c 52 va_list ap; local
68 va_start(ap, strFormat);
69 vsprintf(buffer, strFormat, ap);
72 va_end(ap);
87 va_list ap; local
102 va_start(ap, strFormat);
103 vsprintf(buffer, strFormat, ap);
106 va_end(ap);
  /external/libvpx/vp8/common/
reconintra4x4.c 83 unsigned int ap[4]; local
84 ap[0] = (top_left + 2 * Above[0] + Above[1] + 2) >> 2;
85 ap[1] = (Above[0] + 2 * Above[1] + Above[2] + 2) >> 2;
86 ap[2] = (Above[1] + 2 * Above[2] + Above[3] + 2) >> 2;
87 ap[3] = (Above[2] + 2 * Above[3] + Above[4] + 2) >> 2;
94 predictor[c] = ap[c];
  /external/linux-tools-perf/util/
strbuf.c 87 va_list ap; local
91 va_start(ap, fmt);
92 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
93 va_end(ap);
98 va_start(ap, fmt);
99 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
100 va_end(ap);
  /external/openssh/openbsd-compat/
bsd-cygwin_util.c 50 va_list ap; local
53 va_start(ap, flags);
54 mode = va_arg(ap, mode_t);
55 va_end(ap);
setproctitle.c 125 va_list ap; local
140 va_start(ap, fmt);
144 vsnprintf(buf + len, sizeof(buf) - len , fmt, ap);
146 va_end(ap);
  /external/openssl/crypto/bn/
bn_add.c 108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
126 ap=a->d;
130 carry=bn_add_words(rp,ap,bp,min);
132 ap+=min;
140 t1 = *(ap++);
156 if (dif && rp != ap)
158 /* copy remaining words if ap != rp */
159 *(rp++) = *(ap++);
169 register BN_ULONG t1,t2,*ap,*bp,*rp; local
190 ap=a->d
    [all...]
bn_sqr.c 161 const BN_ULONG *ap; local
165 ap=a;
173 ap++;
174 rp[j]=bn_mul_words(rp,ap,j,ap[-1]);
181 ap++;
182 rp[j]=bn_mul_add_words(rp,ap,j,ap[-1]);
  /external/tcpdump/
print-aodv.c 85 aodv_rreq(const union aodv *ap, const u_char *dat, u_int length)
94 if (i < sizeof(ap->rreq)) {
98 i -= sizeof(ap->rreq);
101 ap->rreq.rreq_type & RREQ_JOIN ? "[J]" : "",
102 ap->rreq.rreq_type & RREQ_REPAIR ? "[R]" : "",
103 ap->rreq.rreq_type & RREQ_GRAT ? "[G]" : "",
104 ap->rreq.rreq_type & RREQ_DEST ? "[D]" : "",
105 ap->rreq.rreq_type & RREQ_UNKNOWN ? "[U] " : " ",
106 ap->rreq.rreq_hops,
107 (unsigned long)EXTRACT_32BITS(&ap->rreq.rreq_id)
396 const union aodv *ap; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
wpabuf.c 206 va_list ap; local
210 va_start(ap, fmt);
211 res = vsnprintf(tmp, buf->size - buf->used, fmt, ap);
212 va_end(ap);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbAccessoryUriActivity.java 73 final AlertController.AlertParams ap = mAlertParams; local
74 ap.mTitle = mAccessory.getDescription();
75 if (ap.mTitle == null || ap.mTitle.length() == 0) {
76 ap.mTitle = getString(R.string.title_usb_accessory);
78 ap.mMessage = getString(R.string.usb_accessory_uri_prompt, mUri);
79 ap.mPositiveButtonText = getString(R.string.label_view);
80 ap.mNegativeButtonText = getString(android.R.string.cancel);
81 ap.mPositiveButtonListener = this;
82 ap.mNegativeButtonListener = this
    [all...]
  /frameworks/wilhelm/src/
handler_bodies.c 27 CAudioPlayer *ap = (CAudioPlayer *) thiz; local
28 android_audioPlayer_volumeUpdate(ap);
62 CAudioPlayer *ap; local
63 ap = (CAudioPlayer *) thiz;
65 (void) android_audioPlayer_seek(ap, ap->mSeek.mPos);
81 CAudioPlayer *ap = (CAudioPlayer *) thiz; local
82 android_audioPlayer_usePlayEventMask(ap);
90 CAudioPlayer *ap = (CAudioPlayer *) thiz; local
91 android_audioPlayer_setPlayState(ap);
130 CAudioPlayer *ap = (CAudioPlayer *) thiz; local
141 CAudioPlayer *ap = (CAudioPlayer *) thiz; local
172 CAudioPlayer *ap = (CAudioPlayer *) thiz; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 77 AlgorithmParameters ap = new DummyAlgorithmParameters(null, p, null); local
78 assertNull(ap.getAlgorithm());
81 ap = new DummyAlgorithmParameters(null, p, "AAA");
82 assertEquals("AAA", ap.getAlgorithm());
175 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC"); local
176 checkUnititialized(ap);
177 ap.init(new MyAlgorithmParameterSpec());
178 checkAP(ap, p);
185 AlgorithmParameters ap = AlgorithmParameters.getInstance(str[i]); local
201 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", "MyProvider") local
211 AlgorithmParameters ap = AlgorithmParameters.getInstance(alg[i], "MyProvider"); local
222 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", prv[i]); local
233 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", prv1[i]); local
309 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", p); local
319 AlgorithmParameters ap = AlgorithmParameters.getInstance(alg[i], p); local
329 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", pp); local
343 AlgorithmParameters ap = new DummyAlgorithmParameters(null, null, "AAA"); local
650 AlgorithmParameters ap = new myAlgP(spi, p, "ABC"); local
    [all...]
  /system/core/sh/
alias.c 67 struct alias *ap, **app; local
70 for (ap = *app; ap; ap = ap->next) {
71 if (equal(name, ap->name)) {
73 ckfree(ap->val);
74 ap->val = savestr(val);
81 ap = ckmalloc(sizeof (struct alias));
82 ap->name = savestr(name)
119 struct alias *ap, **app; local
160 struct alias *ap, *tmp; local
181 struct alias *ap = *hashalias(name); local
197 struct alias *ap; local
213 struct alias *ap; local
    [all...]
  /bionic/libc/unistd/
exec.c 50 va_list ap; local
54 va_start(ap, arg);
56 while (va_arg(ap, char *) != NULL)
58 va_end(ap);
64 va_start(ap, arg);
67 while ((argv[n] = va_arg(ap, char *)) != NULL)
69 va_end(ap);
76 va_list ap; local
80 va_start(ap, arg);
82 while (va_arg(ap, char *) != NULL
103 va_list ap; local
    [all...]

Completed in 38 milliseconds

1 2 34 5 6 7 8 91011>>