Searched refs:scope (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/net/
H A DLinkAddress.java45 * <li>Address scope: One of the {@code OsConstants.IFA_F_*} values; defines the scope in which
68 * Address scope. One of the RT_SCOPE_* constants.
70 private int scope; field in class:LinkAddress
73 * Utility function to determines the scope of a unicast address. Per RFC 4291 section 2.5 and
87 // says that they are assigned global scope.
98 private void init(InetAddress address, int prefixLength, int flags, int scope) { argument
110 this.scope = scope;
115 * the specified flags and scope
123 LinkAddress(InetAddress address, int prefixLength, int flags, int scope) argument
169 LinkAddress(String address, int flags, int scope) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DDrmPlugin.cpp45 const Vector<uint8_t>& scope,
57 sp<Session> session = mSessionLibrary->findSession(scope);
63 const Vector<uint8_t>& scope,
66 sp<Session> session = mSessionLibrary->findSession(scope);
44 getKeyRequest( const Vector<uint8_t>& scope, const Vector<uint8_t>& initData, const String8& initDataType, KeyType keyType, const KeyedVector<String8, String8>& optionalParameters, Vector<uint8_t>& request, String8& defaultUrl) argument
62 provideKeyResponse( const Vector<uint8_t>& scope, const Vector<uint8_t>& response, Vector<uint8_t>& keySetId) argument
H A DDrmPlugin.h51 const Vector<uint8_t>& scope,
60 const Vector<uint8_t>& scope,
/frameworks/av/include/ndk/
H A DNdkMediaDrm.h166 * scope may be a sessionId or a keySetId, depending on the specified keyType.
167 * When the keyType is KEY_TYPE_STREAMING or KEY_TYPE_OFFLINE, scope should be set
169 * KEY_TYPE_RELEASE, scope should be set to the keySetId of the keys being released.
201 media_status_t AMediaDrm_getKeyRequest(AMediaDrm *, const AMediaDrmScope *scope,
214 * scope may be a sessionId or keySetId depending on the type of the
223 media_status_t AMediaDrm_provideKeyResponse(AMediaDrm *, const AMediaDrmScope *scope,
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/testing/espresso/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
78 @rem End local scope for the variables with windows NT shell
/frameworks/native/include/media/drm/
H A DDrmAPI.h111 // The scope parameter may be a sessionId or a keySetId, depending on the
113 // kKeyType_Streaming, scope should be set to the sessionId the keys will be
114 // provided to. When the keyType is kKeyType_Release, scope should be set to
134 getKeyRequest(Vector<uint8_t> const &scope,
144 // scope may be a sessionId or a keySetId depending on the type of the
154 virtual status_t provideKeyResponse(Vector<uint8_t> const &scope,
/frameworks/base/media/java/android/media/
H A DMediaDrm.java413 * @param scope may be a sessionId or a keySetId, depending on the specified keyType.
415 * scope should be set to the sessionId the keys will be provided to. When the keyType
416 * is KEY_TYPE_RELEASE, scope should be set to the keySetId of the keys
433 public native KeyRequest getKeyRequest(byte[] scope, byte[] init, argument
446 * @param scope may be a sessionId or keySetId depending on the type of the
458 public native byte[] provideKeyResponse(byte[] scope, byte[] response) argument
/frameworks/av/media/ndk/
H A DNdkMediaDrm.cpp276 media_status_t AMediaDrm_getKeyRequest(AMediaDrm *mObj, const AMediaDrmScope *scope, argument
284 if (!mimeType || !scope || !keyRequest || !keyRequestSize) {
289 if (!findId(mObj, *scope, iter)) {
327 media_status_t AMediaDrm_provideKeyResponse(AMediaDrm *mObj, const AMediaDrmScope *scope, argument
333 if (!scope || !response || !responseSize || !keySetId) {
338 if (!findId(mObj, *scope, iter)) {
/frameworks/base/tools/apilint/
H A Dapilint.py670 scope = f.name[0:f.name.index("FLAG_")]
671 if val & known[scope]:
673 known[scope] |= val
/frameworks/testing/espresso/libs/
H A Ddagger-1.2.1.jarMETA-INF/ META-INF/MANIFEST.MF dagger/ dagger/internal/ dagger/internal/loaders/ dagger/internal/ArrayQueue$ ...
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java708 * Format: "NNN Address updated <addr> <iface> <flags> <scope>"
709 * "NNN Address removed <addr> <iface> <flags> <scope>"
719 int scope = Integer.parseInt(cooked[6]);
720 address = new LinkAddress(cooked[3], flags, scope);
721 } catch(NumberFormatException e) { // Non-numeric lifetime or scope.

Completed in 493 milliseconds