Searched defs:method (Results 126 - 137 of 137) sorted by last modified time

123456

/frameworks/base/core/java/android/app/
H A DInstrumentation.java120 private void checkInstrumenting(String method) { argument
124 throw new RuntimeException(method +
333 * This method will start profiling if isProfiling() returns true. You should
334 * only call this method if you set the handleProfiling attribute in the
412 * In addition to being synchronous, this method as some semantic
415 * (its class name is specified in the Intent that this method ultimately
481 * activity, through the {@link #waitForActivity} method. This will return
661 * <p> Whenever a new activity is started, this method will be called on instances created
1020 * Higher-level method for sending both the down and up key events for a
1108 * method
[all...]
/frameworks/base/core/java/android/content/
H A DContentProvider.java88 * main thread, and must avoid performing lengthy operations. See the method
399 String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras) {
403 return ContentProvider.this.call(method, arg, extras);
800 * this content provider. This method can be called from multiple
822 * this content provider. This method can be called from multiple
844 * this content provider. This method can be called from multiple
868 * This method is called for all registered content providers on the
885 * from this method. (Instead, override
895 * This method is always called on the application main thread, and must
899 * Override this method t
398 call( String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras) argument
1969 call(@onNull String method, @Nullable String arg, @Nullable Bundle extras) argument
[all...]
H A DContentProviderClient.java477 public @Nullable Bundle call(@NonNull String method, @Nullable String arg, argument
479 Preconditions.checkNotNull(method, "method");
483 return mContentProvider.call(mPackageName, method, arg, extras);
H A DContentProviderNative.java268 String method = data.readString();
272 Bundle responseBundle = call(callingPkg, method, stringArg, args);
637 public Bundle call(String callingPkg, String method, String request, Bundle args) argument
645 data.writeString(method);
H A DContentResolver.java891 * Client code should only invoke this method when there is a strong indication (such as a user
1019 * ContentProvider.openFile()} method, so will <em>not</em> work with
1061 * ContentProvider.openFile()} method, so will <em>not</em> work with
1123 * method of the provider associated with the given URI, to retrieve any file stored there.
1176 * method of the provider associated with the given URI, to retrieve any file stored there.
1327 * {@link ContentProvider#openTypedAssetFile} method of the provider
1360 * {@link ContentProvider#openTypedAssetFile} method of the provider
1686 * Call a provider-defined method. This can be used to implement
1690 * @param method provider-defined method nam
1699 call(@onNull Uri uri, @NonNull String method, @Nullable String arg, @Nullable Bundle extras) argument
[all...]
H A DIContentProvider.java61 String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras)
60 call( String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras) argument
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp301 AString method; local
307 if (itemMeta->findString("cipher-method", &method)) {
314 // If method has changed (e.g., -> NONE); sufficient to check at the segment boundary
315 if (mSampleAesKeyItem != NULL && first && found && method != "SAMPLE-AES") {
316 ALOGI("decryptBuffer: resetting mSampleAesKeyItem(%p) with method %s",
317 mSampleAesKeyItem.get(), method.c_str());
323 method = "NONE";
325 buffer->meta()->setString("cipher-method", method
460 AString method; local
1485 AString method; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp768 // support the method.
947 const AString &request, AString *method, AString *url) {
954 method->setTo(request, 0, space1);
988 AString method, url; local
989 GetMethodAndURL(*request, &method, &url);
999 A2.append(method);
946 GetMethodAndURL( const AString &request, AString *method, AString *url) argument
H A DMyTransmitter.h293 AString *request, const char *method, const char *url) {
313 A2.append(method);
292 addAuthentication( AString *request, const char *method, const char *url) argument
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp1056 AString method; local
1058 data->getRequestField(0, &method);
1066 if (method.startsWith("RTSP/")) {
1104 if (method == "OPTIONS") {
1106 } else if (method == "SETUP") {
1108 } else if (method == "PLAY") {
1110 } else if (method == "PAUSE") {
1112 } else if (method == "TEARDOWN") {
1114 } else if (method == "GET_PARAMETER") {
1116 } else if (method
[all...]
/frameworks/av/include/media/
H A DLinearMap.h39 The method findX() can be used to retrieve an x value from a given y value and is
226 T findX(T y, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
227 return findU(y, mX, mY, method, extrapolation, startValue);
233 T findY(T x, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
234 return findU(x, mY, mX, method, extrapolation, startValue);
289 // method: [out] how the returned value was computed.
298 // whether there are samples in history by the method hasData().
301 T findU(T v, T *uArray, T *vArray, FindMethod *method, argument
304 if (method != NULL) {
305 *method
[all...]
/frameworks/av/media/libmedia/include/media/
H A DLinearMap.h39 The method findX() can be used to retrieve an x value from a given y value and is
226 T findX(T y, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
227 return findU(y, mX, mY, method, extrapolation, startValue);
233 T findY(T x, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const {
234 return findU(x, mY, mX, method, extrapolation, startValue);
289 // method: [out] how the returned value was computed.
298 // whether there are samples in history by the method hasData().
301 T findU(T v, T *uArray, T *vArray, FindMethod *method, argument
304 if (method != NULL) {
305 *method
[all...]

Completed in 151 milliseconds

123456