Searched defs:target (Results 26 - 50 of 99) sorted by relevance

1234

/frameworks/base/core/java/android/content/
H A DIntentSender.java34 * A description of an Intent and target action to perform with it.
141 * @param code Result code to supply back to the IntentSender's target.
167 * @param code Result code to supply back to the IntentSender's target.
266 IBinder target = in.readStrongBinder();
267 return target != null ? new IntentSender(target) : null;
310 public IntentSender(IIntentSender target) { argument
311 mTarget = target;
315 public IntentSender(IBinder target) { argument
316 mTarget = IIntentSender.Stub.asInterface(target);
[all...]
/frameworks/base/core/java/android/net/
H A DDnsPinger.java120 Handler target, int connectionType) {
124 mTarget = target;
119 DnsPinger(Context context, String TAG, Looper looper, Handler target, int connectionType) argument
H A DDummyDataStateTracker.java63 * @param target is the Handler to which to return the events.
65 public void startMonitoring(Context context, Handler target) { argument
66 mTarget = target;
H A DEthernetDataTracker.java192 public void startMonitoring(Context context, Handler target) { argument
194 mCsHandler = target;
H A DLinkProperties.java174 * Compares this {@code LinkProperties} interface name against the target
176 * @param target LinkProperties to compare.
179 public boolean isIdenticalInterfaceName(LinkProperties target) { argument
180 return TextUtils.equals(getInterfaceName(), target.getInterfaceName());
184 * Compares this {@code LinkProperties} interface name against the target
186 * @param target LinkProperties to compare.
189 public boolean isIdenticalAddresses(LinkProperties target) { argument
190 Collection<InetAddress> targetAddresses = target.getAddresses();
197 * Compares this {@code LinkProperties} DNS addresses against the target
199 * @param target LinkPropertie
202 isIdenticalDnses(LinkProperties target) argument
214 isIdenticalRoutes(LinkProperties target) argument
226 isIdenticalHttpProxy(LinkProperties target) argument
269 compareAddresses(LinkProperties target) argument
299 compareDnses(LinkProperties target) argument
330 compareRoutes(LinkProperties target) argument
[all...]
H A DProxy.java209 * @param url the target URL for the request
293 protected java.net.Proxy chooseProxy(List<java.net.Proxy> proxies, HttpHost target, argument
295 return getProxy(mContext, target.getHostName());
299 protected HttpHost determineProxy(HttpHost target, HttpRequest request, argument
301 return getPreferredHttpHost(mContext, target.getHostName());
305 public HttpRoute determineRoute(HttpHost target, HttpRequest request, argument
307 HttpHost proxy = getPreferredHttpHost(mContext, target.getHostName());
309 return new HttpRoute(target);
311 return new HttpRoute(target, null, proxy, false);
H A DMobileDataStateTracker.java100 * @param target is the Hander to which to return the events.
102 public void startMonitoring(Context context, Handler target) { argument
103 mTarget = target;
106 mHandler = new MdstHandler(target.getLooper(), this);
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClient.java260 public HttpResponse execute(HttpHost target, HttpRequest request) argument
262 return delegate.execute(target, request);
265 public HttpResponse execute(HttpHost target, HttpRequest request, argument
267 return delegate.execute(target, request, context);
282 public <T> T execute(HttpHost target, HttpRequest request, argument
285 return delegate.execute(target, request, responseHandler);
288 public <T> T execute(HttpHost target, HttpRequest request, argument
291 return delegate.execute(target, request, responseHandler, context);
/frameworks/base/core/java/android/os/
H A DMessage.java92 /*package*/ Handler target; field in class:Message
124 * message (including its target) into the new one.
138 m.target = orig.target;
145 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
146 * @param h Handler to assign to the returned Message object's <em>target</em> member.
151 m.target = h;
159 * @param h Handler to assign to the returned Message object's <em>target</em> member.
165 m.target = h;
172 * Same as {@link #obtain()}, but sets the values for both <em>target</e
290 setTarget(Handler target) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnectionWrapper.java30 public InputConnectionWrapper(InputConnection target, boolean mutable) { argument
32 mTarget = target;
36 * Change the target of the input connection.
38 public void setTarget(InputConnection target) { argument
42 mTarget = target;
/frameworks/base/libs/rs/driver/
H A DrsdShader.cpp348 const GLenum target = drvTex->glTarget; local
354 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
359 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
363 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
369 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
372 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MAG_FILTER,
374 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_WRAP_S, transNP[s->mHal.state.wrapS]);
375 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_WRAP_T, transNP[s->mHal.state.wrapT]);
378 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTER,
381 RSD_CALL_GL(glTexParameteri, target, GL_TEXTURE_MIN_FILTE
[all...]
/frameworks/base/libs/rs/
H A DrsScriptC_Lib.cpp156 Script *target,
160 target->runForEach(rsc, in, out, usr, usrBytes, call);
155 rsrForEach(Context *rsc, Script *sc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
/frameworks/base/native/android/
H A Dstorage_manager.cpp106 ObbCallback* target = NULL; local
113 target = cb;
120 if (target != NULL) {
121 target->cb(filename, state, target->data);
122 delete target;
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11Ext.java40 void glTexParameterfv(int target, int pname, float[] param, int offset); argument
/frameworks/base/opengl/libs/GLES2_dbg/src/
H A Dheader.h113 const GLenum target; member in struct:android::DbgContext::VBO
117 VBO(const GLuint name, const GLenum target, VBO * head) : name(name), argument
118 target(target), next(head), data(NULL), size(0) {}
146 void glBindBuffer(GLenum target, GLuint buffer);
147 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage);
148 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DPhoneStateIntentReceiver.java67 public PhoneStateIntentReceiver(Context context, Handler target) { argument
70 setTarget(target);
/frameworks/base/wifi/java/android/net/wifi/
H A DSupplicantStateTracker.java65 public SupplicantStateTracker(Context context, WifiStateMachine wsm, Handler target) { argument
66 super(TAG, target.getLooper());
H A DWifiStateTracker.java82 public void startMonitoring(Context context, Handler target) { argument
83 mCsHandler = target;
/frameworks/base/cmds/servicemanager/
H A Dbinder.c47 fprintf(stderr," target %p cookie %p code %08x flags %08x\n",
48 txn->target, txn->cookie, txn->code, txn->flags);
175 data.txn.target = 0;
305 void *target, uint32_t code)
321 writebuf.txn.target = target;
303 binder_call(struct binder_state *bs, struct binder_io *msg, struct binder_io *reply, void *target, uint32_t code) argument
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java213 * Sets the target object for all current {@link #getChildAnimations() child animations}
217 * @param target The object being animated
220 public void setTarget(Object target) { argument
224 ((AnimatorSet)animation).setTarget(target);
226 ((ObjectAnimator)animation).setTarget(target);
H A DPropertyValuesHolder.java367 * target object.
479 * object, it will be derived automatically given the property name, target object, and
483 * on the target object.
484 * @param target The object on which the setter (and possibly getter) exist.
486 void setupSetterAndGetter(Object target) { argument
488 // check to make sure that mProperty is on the class of target
490 Object testValue = mProperty.get(target);
493 kf.setValue(mProperty.get(target));
499 ") on target object " + target
530 setupValue(Object target, Keyframe kf) argument
555 setupStartValue(Object target) argument
567 setupEndValue(Object target) argument
593 setAnimatedValue(Object target) argument
805 setAnimatedValue(Object target) argument
941 setAnimatedValue(Object target) argument
1008 nCallIntMethod(Object target, int methodID, int arg) argument
1009 nCallFloatMethod(Object target, int methodID, float arg) argument
[all...]
/frameworks/base/core/java/android/app/
H A DPendingIntent.java33 * A description of an Intent and target action to perform with it. Instances
196 IIntentSender target =
201 return target != null ? new PendingIntent(target) : null;
257 IIntentSender target =
261 return target != null ? new PendingIntent(target) : null;
293 IIntentSender target =
298 return target != null ? new PendingIntent(target)
638 PendingIntent(IIntentSender target) argument
642 PendingIntent(IBinder target) argument
[all...]
/frameworks/base/opengl/libagl/
H A Dstate.cpp281 void glHint(GLenum target, GLenum mode) argument
284 switch (target) {
/frameworks/base/opengl/libs/GLES2_dbg/test/
H A Dtest_socket.cpp342 static void TexImage2D(GLenum target, GLint level, GLint internalformat, argument
345 EXPECT_EQ(_target, target);
404 static void CopyTexImage2D(GLenum target, GLint level, GLenum internalformat, argument
406 EXPECT_EQ(_target, target);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DLockScreen.java224 public void onTrigger(View v, int target) { argument
225 if (target == 0 || target == 1) { // 0 = unlock/portrait, 1 = unlock/landscape
227 } else if (target == 2 || target == 3) { // 2 = alt/portrait, 3 = alt/landscape

Completed in 303 milliseconds

1234