HomeSort by relevance Sort by last modified time
    Searched refs:mp (Results 101 - 125 of 217) sorted by null

1 2 3 45 6 7 8 9

  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmKlaxon.java 181 public boolean onError(MediaPlayer mp, int what, int extra) {
183 mp.stop();
184 mp.release();
  /external/libppp/src/
bundle.c 78 #include "mp.h"
160 mp_Down(&bundle->ncp.mp);
254 mp_CheckAutoloadTimer(&bundle->ncp.mp);
285 mp_CheckAutoloadTimer(&bundle->ncp.mp);
295 mp_CheckAutoloadTimer(&fp->bundle->ncp.mp);
326 mp_StopAutoloadTimer(&bundle->ncp.mp);
344 if (bundle->ncp.mp.active) {
348 mp_LinkLost(&bundle->ncp.mp, lost);
357 mp_Down(&bundle->ncp.mp);
368 * If it's the last NCP, bring any MP layer dow
    [all...]
deflate.c 70 int pri __unused, u_short *proto, struct mbuf *mp)
77 ilen = m_length(mp);
79 log_DumpBp(LogDEBUG, "DeflateOutput: Compress packet:", mp);
83 mi->m_next = mp;
120 return mp; /* Our dictionary's probably dead now :-( */
158 return mp;
Makefile 10 mbuf.c mp.c ncp.c ncpaddr.c pap.c physical.c pred.c probe.c prompt.c \
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 345 MediaPlayer* mp = new MediaPlayer(); local
346 if (mp->setDataSource(file, NULL) == NO_ERROR) {
347 mp->setAudioStreamType(AUDIO_STREAM_ENFORCED_AUDIBLE);
348 mp->prepare();
353 return mp;
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 306 public void onPrepared(MediaPlayer mp) {
310 map.put("dur", new Integer(mp.getDuration()));
311 map.put("width", new Integer(mp.getVideoWidth()));
312 map.put("height", new Integer(mp.getVideoHeight()));
319 public void onCompletion(MediaPlayer mp) {
329 public boolean onError(MediaPlayer mp, int what, int extra) {
799 public boolean onInfo(MediaPlayer mp, int what, int extra) {
HTML5VideoView.java 303 public void onPrepared(MediaPlayer mp) {
307 mProxy.onPrepared(mp);
  /external/iptables/iptables/
xtoptions.c 78 struct option *merge, *mp; local
97 merge = malloc(sizeof(*mp) * (num_orig + num_old + num_new + 1));
102 memcpy(merge, orig_opts, sizeof(*mp) * num_orig);
103 mp = merge + num_orig;
109 for (i = 0; i < num_new; ++i, ++mp, ++entry) {
110 mp->name = entry->name;
111 mp->has_arg = entry->type != XTTYPE_NONE;
112 mp->flag = NULL;
113 mp->val = entry->id + *offset;
117 memcpy(mp, oldopts, sizeof(*mp) * num_old)
    [all...]
xtables.c 100 struct option *merge, *mp; local
117 merge = malloc(sizeof(*mp) * (num_oold + num_old + num_new + 1));
122 memcpy(merge, orig_opts, sizeof(*mp) * num_oold);
123 mp = merge + num_oold;
128 memcpy(mp, newopts, sizeof(*mp) * num_new);
130 for (i = 0; i < num_new; ++i, ++mp)
131 mp->val += *option_offset;
134 memcpy(mp, oldopts, sizeof(*mp) * num_old)
    [all...]
  /external/chromium/chrome/browser/history/
query_parser.cc 38 Snippet::MatchPosition& mp = (*matches)[index]; local
41 if (SnippetIntersects(mp, *i)) {
42 mp.second = i->second;
  /external/dropbear/
dss.c 262 /* convert an unsigned mp into an array of bytes, malloced.
265 static unsigned char* mptobytes(mp_int *mp, int *len) {
270 size = mp_unsigned_bin_size(mp);
272 if (mp_to_unsigned_bin(mp, ret) != MP_OKAY) {
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 354 @param mp The "b" value from montgomery_setup()
357 int (*ecc_ptadd)(ecc_point *P, ecc_point *Q, ecc_point *R, void *modulus, void *mp);
363 @param mp The "b" value from montgomery_setup()
366 int (*ecc_ptdbl)(ecc_point *P, ecc_point *R, void *modulus, void *mp);
371 @param mp The "b" value from montgomery_setup()
376 int (*ecc_map)(ecc_point *P, void *modulus, void *mp);
tomcrypt_pk.h 253 /* point ops (mp == montgomery digit) */
256 int ltc_ecc_projective_dbl_point(ecc_point *P, ecc_point *R, void *modulus, void *mp);
259 int ltc_ecc_projective_add_point(ecc_point *P, ecc_point *Q, ecc_point *R, void *modulus, void *mp);
289 int ltc_ecc_map(ecc_point *P, void *modulus, void *mp);
  /external/opencv/cvaux/src/
cvhmm1d.cpp 696 double* mp = mix_prob;
741 for( n = 0; n < obs_x; n++, mp += n_states )
746 mp[l] *= state[l].weight[0];
754 for( n = 0; n < obs_x; n++, mp += n_states )
761 mp[l + ofs] += mp[l] * state[l].weight[m];
    [all...]
  /system/vold/
VolumeManager.h 146 bool isMountpointMounted(const char *mp);
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c 137 static int mp_init_multi(mp_int *mp, ...);
140 static void mp_clear_multi(mp_int *mp, ...);
1433 static int mp_init_multi(mp_int *mp, ...)
1437 mp_int* cur_arg = mp;
1440 va_start(args, mp); /* init args to next argument from caller */
1452 cur_arg = mp;
1453 va_start(clean_args, mp);
2943 mp_digit buf, mp; local
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 145 static int mp_init_multi(mp_int *mp, ...);
148 static void mp_clear_multi(mp_int *mp, ...);
1441 static int mp_init_multi(mp_int *mp, ...)
1445 mp_int* cur_arg = mp;
1448 va_start(args, mp); /* init args to next argument from caller */
1460 cur_arg = mp;
1461 va_start(clean_args, mp);
2951 mp_digit buf, mp; local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerFlakyNetworkTest.java 237 public void onPrepared(MediaPlayer mp) {
244 public boolean onError(MediaPlayer mp, int what, int extra) {
MediaRandomTest.java 179 public boolean onError(MediaPlayer mp, int what, int extra) {
180 if (mPlayer == mp &&
VideoSurfaceView.java 45 public VideoSurfaceView(Context context, MediaPlayer mp) {
49 mMediaPlayer = mp;
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java 250 public boolean onError(MediaPlayer mp, int what, int extra) {
256 public void onCompletion(MediaPlayer mp) {
  /external/valgrind/main/memcheck/
mc_leakcheck.c 334 MC_Mempool *mp; local
360 while ( (mp = VG_(HT_Next)(MC_(mempool_list))) ) {
361 VG_(HT_ResetIter)(mp->chunks);
362 while ( (mc = VG_(HT_Next)(mp->chunks)) ) {
395 while ( (mp = VG_(HT_Next)(MC_(mempool_list))) ) {
396 VG_(HT_ResetIter)(mp->chunks);
397 while ( (mc = VG_(HT_Next)(mp->chunks)) ) {
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaAudioEffectTest.java 283 MediaPlayer mp = new MediaPlayer(); local
284 mp.setDataSource(MediaNames.SHORTMP3);
289 mp.getAudioSessionId());
300 mp.release();
320 MediaPlayer mp = new MediaPlayer(); local
321 mp.setDataSource(MediaNames.SHORTMP3);
328 mp.attachAuxEffect(effect.getId());
329 mp.setAuxEffectSendLevel(1.0f);
332 mp.release();
    [all...]
  /external/tcpdump/
print-icmp.c 414 register const struct mtu_discovery *mp; local
415 mp = (struct mtu_discovery *)&dp->icmp_void;
416 mtu = EXTRACT_16BITS(&mp->nexthopmtu);
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovieGWorld.cpp 147 QTMovieGWorldPrivate* mp = static_cast<QTMovieGWorldPrivate*>(param.ptr); local
148 if (mp)
149 mp->drawingComplete();

Completed in 511 milliseconds

1 2 3 45 6 7 8 9