Searched defs:target (Results 1 - 25 of 330) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetBufferPointerv.java1 // C function void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params )
4 int target,
3 glGetBufferPointerv( int target, int pname ) argument
H A DglMapBufferRange.java1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
4 int target,
3 glMapBufferRange( int target, int offset, int length, int access ) argument
H A DglGetBufferPointerv.cpp1 /* void glGetBufferPointerv ( GLenum target, GLenum pname, GLvoid** params ) */
4 (JNIEnv *_env, jobject _this, jint target, jint pname) {
7 glGetBufferParameteri64v((GLenum)target, GL_BUFFER_MAP_LENGTH, &_mapLength);
8 glGetBufferPointerv((GLenum)target, (GLenum)pname, &_p);
3 android_glGetBufferPointerv__II(JNIEnv *_env, jobject _this, jint target, jint pname) argument
H A DglMapBufferRange.cpp1 /* GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access ) */
4 (JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) {
5 GLvoid* _p = glMapBufferRange((GLenum)target,
3 android_glMapBufferRange__IIII(JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) argument
/frameworks/av/include/media/stagefright/foundation/
H A DAHandlerReflector.h27 AHandlerReflector(T *target) argument
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
/frameworks/base/tools/aapt2/filter/
H A DConfigFilter.cpp49 const ConfigDescription& target = entry.first; local
51 uint32_t diff = target.diff(config);
60 memcmp(config.language, target.language, sizeof(config.language)) == 0) {
69 config.smallestScreenWidthDp < target.smallestScreenWidthDp) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFObjectWriter.h27 * \brief ELFObjectWriter writes the target-independent parts of object files.
46 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFObjectWriter
47 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFObjectWriter
H A DELFReaderIf.h51 /// target - the target backend
52 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFReaderIF
53 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFReaderIF
/frameworks/av/media/libstagefright/include/
H A DDataConverter.h34 status_t convert(const sp<ABuffer> &source, sp<ABuffer> &target);
38 virtual status_t safeConvert(const sp<ABuffer> &source, sp<ABuffer> &target);
41 // SampleConverterBase uses a ratio to calculate the source and target sizes
42 // based on source and target sample sizes.
48 virtual status_t safeConvert(const sp<ABuffer> &source, sp<ABuffer> &target) = 0;
61 static AudioConverter *Create(AudioEncoding source, AudioEncoding target);
69 AudioEncoding target, size_t targetSample)
72 mTo(target) { }
67 AudioConverter( AudioEncoding source, size_t sourceSample, AudioEncoding target, size_t targetSample) argument
/frameworks/base/core/java/android/hardware/camera2/dispatch/
H A DArgumentReplacingDispatcher.java44 * Create a new argument replacing dispatcher; dispatches are forwarded to {@code target}
54 * @param target destination dispatch type, methods will be redirected to this dispatcher
58 public ArgumentReplacingDispatcher(Dispatchable<T> target, int argumentIndex, argument
60 mTarget = checkNotNull(target, "target must not be null");
H A DDuckTypingDispatcher.java41 * @param target destination dispatch type, methods will be redirected to this dispatcher
44 public DuckTypingDispatcher(Dispatchable<T> target, Class<T> targetClass) { argument
46 checkNotNull(target, "target must not be null");
48 mDuck = new MethodNameInvoker<T>(target, targetClass);
H A DInvokeDispatcher.java32 public InvokeDispatcher(T target) { argument
33 mTarget = checkNotNull(target, "target must not be null");
H A DMethodNameInvoker.java40 * @param target destination dispatch type, invokes will be redirected to this dispatcher
43 public MethodNameInvoker(Dispatchable<T> target, Class<T> targetClass) { argument
45 mTarget = target;
62 * @throws IllegalArgumentException if {@code methodName} does not exist on the target class
63 * @throws Throwable will rethrow anything that the target method would normally throw
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DImageFormat.java40 int target) {
41 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_BYTE, target);
45 if (target == FrameFormat.TARGET_SIMPLE) {
54 int target) {
59 target);
62 public static MutableFrameFormat create(int colorspace, int target) { argument
67 target);
36 create(int width, int height, int colorspace, int bytesPerSample, int target) argument
51 create(int width, int height, int colorspace, int target) argument
H A DObjectFormat.java29 public static MutableFrameFormat fromClass(Class clazz, int count, int target) { argument
31 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target);
36 result.setBytesPerSample(bytesPerSampleForClass(clazz, target));
40 public static MutableFrameFormat fromClass(Class clazz, int target) { argument
41 return fromClass(clazz, FrameFormat.SIZE_UNSPECIFIED, target);
44 public static MutableFrameFormat fromObject(Object object, int target) { argument
46 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target)
47 : fromClass(object.getClass(), FrameFormat.SIZE_UNSPECIFIED, target);
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { argument
52 ? new MutableFrameFormat(FrameFormat.TYPE_OBJECT, target)
56 bytesPerSampleForClass(Class clazz, int target) argument
[all...]
H A DPrimitiveFormat.java28 public static MutableFrameFormat createByteFormat(int count, int target) { argument
29 return createFormat(FrameFormat.TYPE_BYTE, count, target);
32 public static MutableFrameFormat createInt16Format(int count, int target) { argument
33 return createFormat(FrameFormat.TYPE_INT16, count, target);
36 public static MutableFrameFormat createInt32Format(int count, int target) { argument
37 return createFormat(FrameFormat.TYPE_INT32, count, target);
40 public static MutableFrameFormat createFloatFormat(int count, int target) { argument
41 return createFormat(FrameFormat.TYPE_FLOAT, count, target);
44 public static MutableFrameFormat createDoubleFormat(int count, int target) { argument
45 return createFormat(FrameFormat.TYPE_DOUBLE, count, target);
48 createByteFormat(int target) argument
52 createInt16Format(int target) argument
56 createInt32Format(int target) argument
60 createFloatFormat(int target) argument
64 createDoubleFormat(int target) argument
68 createFormat(int baseType, int count, int target) argument
74 createFormat(int baseType, int target) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbResolverActivity.java58 Intent target = (Intent)targetParcelable;
61 super.onCreate(savedInstanceState, target, title, null, rList,
73 mDevice = (UsbDevice)target.getParcelableExtra(UsbManager.EXTRA_DEVICE);
77 mAccessory = (UsbAccessory)target.getParcelableExtra(UsbManager.EXTRA_ACCESSORY);
96 protected boolean onTargetSelected(TargetInfo target, boolean alwaysCheck) { argument
97 final ResolveInfo ri = target.getResolveInfo();
125 target.startAsUser(this, null, new UserHandle(userId));
/frameworks/base/services/core/java/com/android/server/backup/
H A DBackupUtils.java35 public static boolean signaturesMatch(ArrayList<byte[]> storedSigHashes, PackageInfo target) { argument
36 if (target == null) {
40 // If the target resides on the system partition, we allow it to restore
45 if ((target.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
46 if (DEBUG) Slog.v(TAG, "System app " + target.packageName + " - skipping sig check");
52 Signature[] deviceSigs = target.signatures;
/frameworks/native/cmds/servicemanager/
H A Dbctest.c11 uint32_t svcmgr_lookup(struct binder_state *bs, uint32_t target, const char *name) argument
22 if (binder_call(bs, &msg, &reply, target, SVC_MGR_CHECK_SERVICE))
35 int svcmgr_publish(struct binder_state *bs, uint32_t target, const char *name, void *ptr) argument
47 if (binder_call(bs, &msg, &reply, target, SVC_MGR_ADD_SERVICE))
/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingParentHelper.java58 public void onNestedScrollAccepted(View child, View target, int axes) { argument
80 * @param target View that initiated the nested scroll
82 public void onStopNestedScroll(View target) { argument
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DListViewAutoScrollHelper.java29 public ListViewAutoScrollHelper(ListView target) { argument
30 super(target);
32 mTarget = target;
48 final ListView target = mTarget;
49 final int itemCount = target.getCount();
54 final int childCount = target.getChildCount();
55 final int firstPosition = target.getFirstVisiblePosition();
61 final View lastView = target.getChildAt(childCount - 1);
62 if (lastView.getBottom() <= target.getHeight()) {
69 final View firstView = target
[all...]
/frameworks/support/design/honeycomb/android/support/design/widget/
H A DViewGroupUtilsHoneycomb.java52 static void offsetDescendantMatrix(ViewParent target, View view, Matrix m) { argument
54 if (parent instanceof View && parent != target) {
56 offsetDescendantMatrix(target, vp, m);
/frameworks/av/camera/ndk/
H A DNdkCaptureRequest.cpp41 void ACameraOutputTarget_free(ACameraOutputTarget* target) { argument
43 if (target != nullptr) {
44 delete target;
51 ACaptureRequest* req, const ACameraOutputTarget* target) {
53 if (req == nullptr || req->targets == nullptr || target == nullptr) {
54 ALOGE("%s: Error: invalid input: req %p, req-targets %p, target %p",
55 __FUNCTION__, req, req->targets, target);
58 auto pair = req->targets->mOutputs.insert(*target);
60 ALOGW("%s: target %p already exists!", __FUNCTION__, target);
50 ACaptureRequest_addTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
66 ACaptureRequest_removeTarget( ACaptureRequest* req, const ACameraOutputTarget* target) argument
[all...]
/frameworks/av/media/libstagefright/
H A DDataConverter.cpp30 status_t DataConverter::convert(const sp<ABuffer> &source, sp<ABuffer> &target) { argument
31 CHECK(source->base() != target->base());
34 if (size > target->capacity()) {
37 target->capacity()); // this is out buffer size
40 err = safeConvert(source, target);
42 target->setRange(0, err == OK ? size : 0);
46 status_t DataConverter::safeConvert(const sp<ABuffer> &source, sp<ABuffer> &target) { argument
47 memcpy(target->base(), source->data(), source->size());
76 ALOGW("limiting target size due to overflow (%zu*%zu/%zu)",
95 AudioConverter* AudioConverter::Create(AudioEncoding source, AudioEncoding target) { argument
[all...]
/frameworks/base/core/java/android/os/
H A DBroadcaster.java30 * target will be sent a copy of that message with targetWhat in the what field.
32 public void request(int senderWhat, Handler target, int targetWhat) argument
41 r.targets[0] = target;
81 if (oldTargets[i] == target && oldWhats[i] == targetWhat) {
90 r.targets[n] = target;
97 * Unregister for notifications for this senderWhat/target/targetWhat tuple.
99 public void cancelRequest(int senderWhat, Handler target, int targetWhat) argument
121 if (targets[i] == target && whats[i] == targetWhat) {
192 Handler target = targets[i];
196 target
[all...]

Completed in 936 milliseconds

1234567891011>>