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

/frameworks/base/core/java/android/net/
H A DINetworkManagementEventObserver.aidl63 * @param scope The address scope.
65 void addressUpdated(String address, String iface, int flags, int scope);
73 * @param scope The address scope.
75 void addressRemoved(String address, String iface, int flags, int scope);
/frameworks/base/core/java/com/android/server/net/
H A DBaseNetworkObserver.java39 public void addressUpdated(String address, String iface, int flags, int scope) { argument
44 public void addressRemoved(String address, String iface, int flags, int scope) { argument
/frameworks/base/media/java/android/media/
H A DMediaDrm.java352 * @param scope may be a sessionId or a keySetId, depending on the specified keyType.
354 * scope should be set to the sessionId the keys will be provided to. When the keyType
355 * is KEY_TYPE_RELEASE, scope should be set to the keySetId of the keys
372 public native KeyRequest getKeyRequest(byte[] scope, byte[] init, argument
386 * @param scope may be a sessionId or keySetId depending on the type of the
398 public native byte[] provideKeyResponse(byte[] scope, byte[] response) argument
/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/services/java/com/android/server/
H A DNetworkManagementService.java407 private void notifyAddressUpdated(String address, String iface, int flags, int scope) { argument
411 mObservers.getBroadcastItem(i).addressUpdated(address, iface, flags, scope);
422 private void notifyAddressRemoved(String address, String iface, int flags, int scope) { argument
426 mObservers.getBroadcastItem(i).addressRemoved(address, iface, flags, scope);
519 * Format: "NNN Address updated <addr> <iface> <flags> <scope>"
520 * "NNN Address removed <addr> <iface> <flags> <scope>"
528 int scope;
531 scope = Integer.parseInt(cooked[6]);
537 notifyAddressUpdated(cooked[3], cooked[4], flags, scope);
539 notifyAddressRemoved(cooked[3], cooked[4], flags, scope);
[all...]
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java318 public void addressUpdated(String address, String iface, int flags, int scope) {} argument
320 public void addressRemoved(String address, String iface, int flags, int scope) {} argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateMachine.java247 public void addressUpdated(String address, String iface, int flags, int scope) { argument
251 " flags " + flags + " scope " + scope);
258 public void addressRemoved(String address, String iface, int flags, int scope) { argument
262 " flags " + flags + " scope " + scope);

Completed in 136 milliseconds