/frameworks/base/wifi/java/android/net/wifi/aware/ |
IWifiAwareDiscoverySessionCallback.aidl | 31 void onMatch(int peerId, in byte[] serviceSpecificInfo, in byte[] matchFilter);
|
DiscoverySessionCallback.java | 103 * @param matchFilter The filter which resulted in this service discovery. 106 byte[] serviceSpecificInfo, List<byte[]> matchFilter) {
|
PublishConfig.java | 84 public PublishConfig(byte[] serviceName, byte[] serviceSpecificInfo, byte[] matchFilter, 88 mMatchFilter = matchFilter; 129 byte[] matchFilter = in.createByteArray(); 134 return new PublishConfig(serviceName, ssi, matchFilter, publishType, 275 * @param matchFilter A list of match filter entries (each of which is an arbitrary byte 281 public Builder setMatchFilter(@Nullable List<byte[]> matchFilter) { 283 matchFilter).getArray();
|
SubscribeConfig.java | 82 public SubscribeConfig(byte[] serviceName, byte[] serviceSpecificInfo, byte[] matchFilter, 87 mMatchFilter = matchFilter; 129 byte[] matchFilter = in.createByteArray(); 134 return new SubscribeConfig(serviceName, ssi, matchFilter, subscribeType, 184 "Invalid matchFilter configuration - LV fields do not match up to length"); 275 * @param matchFilter A list of match filter entries (each of which is an arbitrary byte 281 public Builder setMatchFilter(@Nullable List<byte[]> matchFilter) { 283 matchFilter).getArray();
|
WifiAwareManager.java | 733 List<byte[]> matchFilter = null; 736 matchFilter = new TlvBufferUtils.TlvIterable(0, 1, arg).toList(); [all...] |
/frameworks/base/core/java/android/text/util/ |
Linkify.java | 115 public static final MatchFilter sUrlMatchFilter = new MatchFilter() { 133 public static final MatchFilter sPhoneNumberMatchFilter = new MatchFilter() { 163 * MatchFilter enables client code to have more control over 170 * might also include a MatchFilter that disallows the match if it is 173 public interface MatchFilter { 344 * @param matchFilter The filter that is used to allow the client code 349 @Nullable String scheme, @Nullable MatchFilter matchFilter, [all...] |
/frameworks/support/compat/java/android/support/v4/text/util/ |
LinkifyCompat.java | 33 import android.text.util.Linkify.MatchFilter; 213 * @param matchFilter The filter that is used to allow the client code 218 @Nullable String scheme, @Nullable MatchFilter matchFilter, 220 addLinks(text, pattern, scheme, null, matchFilter, transformFilter); 236 * @param matchFilter The filter that is used to allow the client code additional control 242 @Nullable MatchFilter matchFilter, @Nullable TransformFilter transformFilter) { 245 boolean linksAdded = addLinks(spannable, pattern, defaultScheme, schemes, matchFilter, 275 * @param matchFilter The filter that is used to allow the client cod [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/ |
CallbackUtils.java | 182 public List<byte[]> matchFilter; 310 List<byte[]> matchFilter) { 314 callbackData.matchFilter = matchFilter;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/testcase/ |
DataPathInBandTestCase.java | 168 List<byte[]> matchFilter = new ArrayList<>(); 169 matchFilter.add(MATCH_FILTER_BYTES); 172 matchFilter).setSubscribeType( 222 if (callbackData.matchFilter.size() != 1 || !Arrays.equals(MATCH_FILTER_BYTES, 223 callbackData.matchFilter.get(0))) { 226 sb.append("size=").append(callbackData.matchFilter.size()); 227 for (byte[] mf: callbackData.matchFilter) { 230 Log.e(TAG, "executeTestSubscriber: discovery but matchFilter mismatch: " 318 List<byte[]> matchFilter = new ArrayList<>(); 319 matchFilter.add(MATCH_FILTER_BYTES) [all...] |
/frameworks/base/wifi/tests/src/android/net/wifi/aware/ |
WifiAwareManagerTest.java | 256 final byte[] matchFilter = { 1, 12, 2, 31, 32 }; 295 sessionProxyCallback.getValue().onMatch(peerHandle.peerId, string1.getBytes(), matchFilter); 308 List<byte[]> parsedMatchFilter = new TlvBufferUtils.TlvIterable(0, 1, matchFilter).toList(); 406 final byte[] matchFilter = { 1, 12, 3, 31, 32 }; // bad data! 443 sessionProxyCallback.getValue().onMatch(peerHandle.peerId, string1.getBytes(), matchFilter); 698 final byte[] matchFilter = { 1, 16, 1, 22 }; 706 new TlvBufferUtils.TlvIterable(0, 1, matchFilter).toList()) 715 collector.checkThat("mMatchFilter", matchFilter, equalTo(subscribeConfig.mMatchFilter)); [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/ |
WifiAwareDiscoverySessionState.java | 224 * @param matchFilter The filter from the discovery advertisement (which was 228 byte[] matchFilter) { 235 mCallback.onMatch(requestorInstanceId, serviceSpecificInfo, matchFilter);
|
WifiAwareNativeCallback.java | 305 convertArrayListToNativeByteArray(event.serviceSpecificInfo)) + ", matchFilter=" 306 + Arrays.toString(convertArrayListToNativeByteArray(event.matchFilter))); 311 convertArrayListToNativeByteArray(event.matchFilter));
|
WifiAwareStateManager.java | 724 byte[] serviceSpecificInfo, byte[] matchFilter) { 731 msg.getData().putByteArray(MESSAGE_BUNDLE_KEY_FILTER_DATA, matchFilter); [all...] |
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/ |
WifiAwareServiceImplTest.java | 582 private void doBadPublishConfiguration(String serviceName, byte[] ssi, byte[] matchFilter) 587 PublishConfig publishConfig = new PublishConfig(serviceName.getBytes(), ssi, matchFilter, 598 private void doBadSubscribeConfiguration(String serviceName, byte[] ssi, byte[] matchFilter) 604 matchFilter, SubscribeConfig.SUBSCRIBE_TYPE_PASSIVE, 0, true);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/ |
WifiAwareManagerFacade.java | 251 if (j.has("MatchFilter")) { 253 j.getJSONObject("MatchFilter")); 287 if (j.has("MatchFilter")) { 289 j.getJSONObject("MatchFilter")); 622 byte[] serviceSpecificInfo, List<byte[]> matchFilter) { 627 mResults.putByteArray("matchFilter", new TlvBufferUtils.TlvConstructor(0, 628 1).allocateAndPut(matchFilter).getArray()); // TODO: base64
|
/hardware/interfaces/wifi/1.0/ |
types.hal | [all...] |
/cts/tests/tests/net/src/android/net/wifi/aware/cts/ |
SingleDeviceTest.java | 232 List<byte[]> matchFilter) { [all...] |
/prebuilts/sdk/current/support/compat/libs/ |
android-support-compat.jar | |
/hardware/interfaces/wifi/1.0/default/ |
hidl_struct_util.cpp | [all...] |
/prebuilts/sdk/26/ |
android.jar | |
/external/guice/extensions/persist/lib/ |
log4j-1.2.14.jar | |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
log4j-1.2.14.jar | |
/prebuilts/tools/common/m2/repository/log4j/log4j/1.2.12/ |
log4j-1.2.12.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
pdebuild.jar | |
/prebuilts/sdk/25/ |
android.jar | |