OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UserCallIntentProcessor
(Results
1 - 6
of
6
) sorted by null
/packages/services/Telecomm/src/com/android/server/telecom/components/
UserCallIntentProcessorFactory.java
23
UserCallIntentProcessor
create(Context context, UserHandle userHandle);
UserCallActivity.java
76
new
UserCallIntentProcessor
(this, userHandle).processIntent(new Intent(intent),
UserCallIntentProcessor.java
55
* name to be passed to {@link
UserCallIntentProcessor
}. Calling startActivity will continue to
58
public class
UserCallIntentProcessor
{
63
public
UserCallIntentProcessor
(Context context, UserHandle userHandle) {
/packages/services/Telecomm/src/com/android/server/telecom/
TelecomSystem.java
23
import com.android.server.telecom.components.
UserCallIntentProcessor
;
324
public
UserCallIntentProcessor
create(Context context, UserHandle userHandle) {
325
return new
UserCallIntentProcessor
(context, userHandle);
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
TelecomServiceImplTest.java
54
import com.android.server.telecom.components.
UserCallIntentProcessor
;
148
@Mock private
UserCallIntentProcessor
mUserCallIntentProcessor;
182
public
UserCallIntentProcessor
create(Context context, UserHandle userHandle) {
[
all
...]
TelecomSystemTest.java
90
import com.android.server.telecom.components.
UserCallIntentProcessor
;
675
new
UserCallIntentProcessor
(localAppContext, userHandle).processIntent(
677
//
UserCallIntentProcessor
's mContext.sendBroadcastAsUser(...) will call to an empty method
[
all
...]
Completed in 448 milliseconds