Lines Matching refs:RawGatewayInfo
69 public static final RawGatewayInfo EMPTY_INFO = new RawGatewayInfo(null, null, null);
71 private final ConcurrentHashMap<Connection, RawGatewayInfo> mMap =
72 new ConcurrentHashMap<Connection, RawGatewayInfo>(4, 0.9f, 1);
88 * Intent parameter. If no such data exists, returns a Null-Object RawGatewayInfo.
90 * @return A populated or empty RawGatewayInfo object.
92 public static RawGatewayInfo getRawGatewayInfo(Intent intent, String number) {
94 return new RawGatewayInfo(intent.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE),
106 public void setGatewayInfoForConnection(Connection connection, RawGatewayInfo gatewayInfo) {
126 public RawGatewayInfo getGatewayInfo(Connection connection) {
127 final RawGatewayInfo info = mMap.get(connection);
199 public static class RawGatewayInfo {
204 public RawGatewayInfo(String packageName, Uri gatewayUri,