OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RawGatewayInfo
(Results
1 - 3
of
3
) sorted by null
/packages/services/Telephony/src/com/android/phone/
CallGatewayManager.java
68
public static final
RawGatewayInfo
EMPTY_INFO = new
RawGatewayInfo
(null, null, null);
70
private final ConcurrentHashMap<Connection,
RawGatewayInfo
> mMap =
71
new ConcurrentHashMap<Connection,
RawGatewayInfo
>(4, 0.9f, 1);
87
* Intent parameter. If no such data exists, returns a Null-Object
RawGatewayInfo
.
89
* @return A populated or empty
RawGatewayInfo
object.
91
public static
RawGatewayInfo
getRawGatewayInfo(Intent intent, String number) {
93
return new
RawGatewayInfo
(intent.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE),
104
public void setGatewayInfoForConnection(Connection connection,
RawGatewayInfo
gatewayInfo) {
124
public
RawGatewayInfo
getGatewayInfo(Connection connection)
[
all
...]
CallController.java
22
import com.android.phone.CallGatewayManager.
RawGatewayInfo
;
423
final
RawGatewayInfo
rawGatewayInfo
= mCallGatewayManager.getRawGatewayInfo(intent, number);
432
rawGatewayInfo
,
PhoneUtils.java
66
import com.android.phone.CallGatewayManager.
RawGatewayInfo
;
552
boolean isEmergencyCall,
RawGatewayInfo
gatewayInfo, CallGatewayManager callGateway) {
[
all
...]
Completed in 266 milliseconds