Home | History | Annotate | Download | only in util

Lines Matching refs:PROTOCOL

200      * ProviderNames from the predefined IM protocol id.
203 * @param protocol the protocol ID
204 * @return the provider name the IM app uses for the given protocol, or null if no
205 * provider is defined for the given protocol
208 public static String lookupProviderNameFromId(int protocol) {
209 switch (protocol) {
232 * {@link Email} row. Returns null when missing protocol or data.
241 final int protocol = isEmail ? Im.PROTOCOL_GOOGLE_TALK : values.getAsInteger(Im.PROTOCOL);
245 if (protocol != Im.PROTOCOL_CUSTOM) {
247 host = ContactsUtils.lookupProviderNameFromId(protocol);
261 String protocolString = values.getAsString(Im.PROTOCOL);