Searched defs:STOP_FOREGROUND_REMOVE (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/app/
H A DServiceCompat.java64 public static final int STOP_FOREGROUND_REMOVE = 1<<0; field in class:ServiceCompat
69 * Only makes sense when {@link #STOP_FOREGROUND_REMOVE} is <b>not</b> set -- in this case, the
84 STOP_FOREGROUND_REMOVE,
93 * @param flags Additional behavior options: {@link #STOP_FOREGROUND_REMOVE},
101 service.stopForeground((flags & ServiceCompat.STOP_FOREGROUND_REMOVE) != 0);
/frameworks/base/core/java/android/app/
H A DService.java312 public static final int STOP_FOREGROUND_REMOVE = 1<<0; field in class:Service
317 * when {@link #STOP_FOREGROUND_REMOVE} is <b>not</b> set -- in this case, the notification
325 STOP_FOREGROUND_REMOVE,
704 * @param removeNotification If true, the {@link #STOP_FOREGROUND_REMOVE} flag
710 stopForeground(removeNotification ? STOP_FOREGROUND_REMOVE : 0);

Completed in 76 milliseconds