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

1 2 3 4 5 6 7 8 91011>>

  /system/media/opensles/libopensles/
C3DGroup.c 5 * you may not use this file except in compliance with the License.
26 C3DGroup *this = (C3DGroup *) self; local
28 if (0 == this->mMemberMask) {
31 SL_LOGE("Object::Destroy(%p) for 3DGroup ignored; mMemberMask=0x%x", this, this->mMemberMask);
IAndroidConfiguration.c 5 * you may not use this file except in compliance with the License.
29 IAndroidConfiguration *this = (IAndroidConfiguration *) self; local
31 interface_lock_exclusive(this);
34 if (SL_OBJECTID_AUDIORECORDER == IObjectToObjectID((this)->mThis)) {
37 result = android_audioRecorder_setConfig((CAudioRecorder *) this->mThis, configKey,
39 } else if (SL_OBJECTID_AUDIOPLAYER == IObjectToObjectID((this)->mThis)) {
42 result = android_audioPlayer_setConfig((CAudioPlayer *) this->mThis, configKey,
48 interface_unlock_exclusive(this);
66 IAndroidConfiguration *this = (IAndroidConfiguration *) self; local
68 interface_lock_exclusive(this);
95 IAndroidConfiguration *this = (IAndroidConfiguration *) self; local
    [all...]
IDynamicSource.c 5 * you may not use this file except in compliance with the License.
29 IDynamicSource *this = (IDynamicSource *) self; local
37 IObject *thisObject = InterfaceToIObject(this);
40 this->mDataSource = pDataSource;
55 IDynamicSource *this = (IDynamicSource *) self; local
56 this->mItf = &IDynamicSource_Itf;
58 this->mDataSource = NULL;
IVisualization.c 5 * you may not use this file except in compliance with the License.
30 IVisualization *this = (IVisualization *) self; local
31 interface_lock_exclusive(this);
32 this->mCallback = callback;
33 this->mContext = pContext;
34 this->mRate = rate;
35 interface_unlock_exclusive(this);
65 IVisualization *this = (IVisualization *) self; local
66 this->mItf = &IVisualization_Itf;
67 this->mCallback = NULL
    [all...]
CAudioRecorder.c 5 * you may not use this file except in compliance with the License.
29 CAudioRecorder *this = (CAudioRecorder *) self; local
30 result = android_audioRecorder_realize(this, async);
49 CAudioRecorder *this = (CAudioRecorder *) self; local
50 freeDataLocatorFormat(&this->mDataSource);
51 freeDataLocatorFormat(&this->mDataSink);
53 android_audioRecorder_destroy(this);
I3DCommit.c 5 * you may not use this file except in compliance with the License.
26 I3DCommit *this = (I3DCommit *) self; local
27 IObject *thisObject = InterfaceToIObject(this);
29 if (this->mDeferred) {
30 SLuint32 myGeneration = this->mGeneration;
32 ++this->mWaiting;
34 } while (this->mGeneration == myGeneration);
47 I3DCommit *this = (I3DCommit *) self; local
48 IObject *thisObject = InterfaceToIObject(this);
50 this->mDeferred = SL_BOOLEAN_FALSE != deferred; // normaliz
65 I3DCommit *this = (I3DCommit *) self; local
    [all...]
IAudioDecoderCapabilities.c 5 * you may not use this file except in compliance with the License.
64 IAudioDecoderCapabilities *this = (IAudioDecoderCapabilities *) self; local
65 this->mItf = &IAudioDecoderCapabilities_Itf;
IAudioEncoder.c 5 * you may not use this file except in compliance with the License.
30 IAudioEncoder *this = (IAudioEncoder *) self; local
32 interface_lock_exclusive(this);
33 this->mSettings = settings;
34 interface_unlock_exclusive(this);
50 IAudioEncoder *this = (IAudioEncoder *) self; local
51 interface_lock_shared(this);
52 SLAudioEncoderSettings settings = this->mSettings;
53 interface_unlock_shared(this);
69 IAudioEncoder *this = (IAudioEncoder *) self local
    [all...]
IAudioEncoderCapabilities.c 5 * you may not use this file except in compliance with the License.
65 IAudioEncoderCapabilities *this = (IAudioEncoderCapabilities *) self; local
66 this->mItf = &IAudioEncoderCapabilities_Itf;
IOutputMix.c 5 * you may not use this file except in compliance with the License.
52 IOutputMix *this = (IOutputMix *) self; local
53 interface_lock_exclusive(this);
54 this->mCallback = callback;
55 this->mContext = pContext;
56 interface_unlock_exclusive(this);
97 IOutputMix *this = (IOutputMix *) self; local
98 this->mItf = &IOutputMix_Itf;
99 this->mCallback = NULL;
100 this->mContext = NULL
    [all...]
IThreadSync.c 5 * you may not use this file except in compliance with the License.
26 IThreadSync *this = (IThreadSync *) self; local
27 interface_lock_exclusive(this);
29 if (this->mInCriticalSection) {
30 if (!pthread_equal(this->mOwner, pthread_self())) {
31 ++this->mWaiting;
32 interface_cond_wait(this);
39 this->mInCriticalSection = SL_BOOLEAN_TRUE;
40 this->mOwner = pthread_self();
44 interface_unlock_exclusive(this);
54 IThreadSync *this = (IThreadSync *) self; local
80 IThreadSync *this = (IThreadSync *) self; local
89 IThreadSync *this = (IThreadSync *) self; local
    [all...]
CAudioPlayer.c 5 * you may not use this file except in compliance with the License.
26 CAudioPlayer *this = (CAudioPlayer *) self; local
30 result = android_audioPlayer_realize(this, async);
34 result = SndFile_Realize(this);
37 // At this point the channel count and sample rate might still be unknown,
57 CAudioPlayer *this = (CAudioPlayer *) self; local
58 freeDataLocatorFormat(&this->mDataSource);
59 freeDataLocatorFormat(&this->mDataSink);
61 SndFile_Destroy(this);
64 android_audioPlayer_destroy(this);
74 CAudioPlayer *this = (CAudioPlayer *) self; local
    [all...]
COutputMix.c 5 * you may not use this file except in compliance with the License.
29 COutputMix *this = (COutputMix *) self; local
30 result = android_outputMix_realize(this, async);
50 COutputMix *this = (COutputMix *) self; local
51 android_outputMix_destroy(this);
60 // Ignore destroy requests if there are any players attached to this output mix
65 // We only support a single active output mix per engine, so check if this is the active mix
IAndroidEffect.c 5 * you may not use this file except in compliance with the License.
27 IAndroidEffect *this = (IAndroidEffect *) self; local
28 if (SL_OBJECTID_AUDIOPLAYER == IObjectToObjectID(this->mThis)) {
29 CAudioPlayer *ap = (CAudioPlayer *)this->mThis;
31 result = android_genericFx_createEffect(this, effectImplementationId, ap->mSessionId);
35 } else if (SL_OBJECTID_OUTPUTMIX == IObjectToObjectID(this->mThis)) {
36 result = android_genericFx_createEffect(this, effectImplementationId,
53 IAndroidEffect *this = (IAndroidEffect *) self; local
54 result = android_genericFx_releaseEffect(this, effectImplementationId);
65 IAndroidEffect *this = (IAndroidEffect *) self local
77 IAndroidEffect *this = (IAndroidEffect *) self; local
90 IAndroidEffect *this = (IAndroidEffect *) self; local
108 IAndroidEffect *this = (IAndroidEffect *) self; local
117 IAndroidEffect *this = (IAndroidEffect *) self; local
    [all...]
IDeviceVolume.c 5 * you may not use this file except in compliance with the License.
62 IDeviceVolume *this = (IDeviceVolume *) self; local
63 interface_lock_poke(this);
64 this->mVolume[~deviceID] = volume;
65 interface_unlock_poke(this);
94 IDeviceVolume *this = (IDeviceVolume *) self; local
95 interface_lock_peek(this);
96 SLint32 volume = this->mVolume[~deviceID];
97 interface_unlock_peek(this);
120 IDeviceVolume *this = (IDeviceVolume *) self local
    [all...]
  /external/svox/pico/lib/
picoknow.c 5 * you may not use this file except in compliance with the License.
46 picoknow_KnowledgeBase this; local
49 this = picoos_allocate(mm,sizeof(*this));
50 if (NULL != this) {
51 PICODBG_TRACE(("allocated KnowledgeBase at address %i with size %i",(picoos_uint32)this,sizeof(*this)));
53 this->next = NULL;
54 this->id = PICOKNOW_KBID_NULL;
55 this->base = NULL
    [all...]
  /frameworks/base/core/java/android/os/
ConditionVariable.java 5 * you may not use this file except in compliance with the License.
23 * This differs from the built-in java.lang.Object wait() and notify()
24 * in that this class contains the condition to wait on itself. That means
29 * This class uses itself is at the object to wait on, so if you wait()
64 synchronized (this) {
68 this.notifyAll();
81 synchronized (this) {
94 synchronized (this) {
97 this.wait();
119 // Object.wait(0) means wait forever, to mimic this, we jus
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
NullCipher.java 4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
32 * This class provides an identity cipher that does not transform the input data
43 this.init(Cipher.ENCRYPT_MODE, (Key)null, (SecureRandom)null);
  /libcore/luni/src/main/java/java/nio/
MappedByteBufferAdapter.java 4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
55 return this.wrapped.asCharBuffer();
60 return this.wrapped.asDoubleBuffer();
65 return this.wrapped.asFloatBuffer();
70 return this.wrapped.asIntBuffer();
75 return this.wrapped.asLongBuffer();
80 MappedByteBufferAdapter buf = new MappedByteBufferAdapter(this.wrapped
82 buf.limit = this.limit
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetProvider.java 5 * you may not use this file except in compliance with the License.
31 * <p>Extend this class and override one or more of the {@link #onUpdate}, {@link #onDeleted},
61 this.onUpdate(context, AppWidgetManager.getInstance(context), appWidgetIds);
69 this.onDeleted(context, new int[] { appWidgetId });
73 this.onEnabled(context);
76 this.onDisabled(context);
83 * this AppWidget provider is being asked to provide {@link android.widget.RemoteViews RemoteViews}
84 * for a set of AppWidgets. Override this method to implement your own AppWidget functionality.
88 * @param context The {@link android.content.Context Context} in which this receiver is
92 * @param appWidgetIds The appWidgetIds for which an update is needed. Note that this
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 10 * this work for additional information regarding copyright ownership.
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
24 * This software consists of voluntary contributions made by many
61 this.out = out;
62 this.wire = wire;
66 this.out.write(b, off, len);
67 if (this.wire.enabled()) {
68 this.wire.output(b, off, len);
73 this.out.write(b)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/output/
TeeOutputStream.java 4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
41 this.branch = branch;
51 this.branch.write(b);
63 this.branch.write(b, off, len);
73 this.branch.write(b);
82 this.branch.flush();
91 this.branch.close();
  /external/webkit/WebKitTools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupportTiger.pm 0 # This file was automatically generated by SWIG
38 sub this { subroutine
  /frameworks/base/tests/CoreTests/android/core/
TestHttpClient.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
70 this.params = new BasicHttpParams();
71 this.params
77 this.httpproc = new BasicHttpProcessor();
79 this.httpproc.addInterceptor(new RequestContent());
80 this.httpproc.addInterceptor(new RequestTargetHost());
82 this.httpproc.addInterceptor(new RequestConnControl())
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
StreamHandler.java 4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
33 * <li>java.util.logging.StreamHandler.encoding specifies the encoding this
37 * class to be associated with this handler. No <code>Filter</code> is used by
40 * formatter class to be associated with this handler. Default is
46 * This class is not thread-safe.
50 // the output stream this handler writes to
65 this.os = null;
66 this.writer = null
    [all...]

Completed in 144 milliseconds

1 2 3 4 5 6 7 8 91011>>