HomeSort by relevance Sort by last modified time
    Searched refs:svc (Results 1 - 25 of 324) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/services/backup/java/com/android/server/backup/
Trampoline.java 134 BackupManagerService svc = mService; local
135 if (svc != null) {
136 svc.dataChanged(packageName);
143 BackupManagerService svc = mService; local
144 if (svc != null) {
145 svc.clearBackupData(transportName, packageName);
151 BackupManagerService svc = mService; local
152 if (svc != null) {
153 svc.agentConnected(packageName, agent);
159 BackupManagerService svc = mService local
167 BackupManagerService svc = mService; local
175 BackupManagerService svc = mService; local
183 BackupManagerService svc = mService; local
191 BackupManagerService svc = mService; local
199 BackupManagerService svc = mService; local
205 BackupManagerService svc = mService; local
211 BackupManagerService svc = mService; local
217 BackupManagerService svc = mService; local
228 BackupManagerService svc = mService; local
237 BackupManagerService svc = mService; local
245 BackupManagerService svc = mService; local
255 BackupManagerService svc = mService; local
264 BackupManagerService svc = mService; local
270 BackupManagerService svc = mService; local
276 BackupManagerService svc = mService; local
282 BackupManagerService svc = mService; local
288 BackupManagerService svc = mService; local
294 BackupManagerService svc = mService; local
300 BackupManagerService svc = mService; local
307 BackupManagerService svc = mService; local
313 BackupManagerService svc = mService; local
321 BackupManagerService svc = mService; local
329 BackupManagerService svc = mService; local
340 BackupManagerService svc = mService; local
345 BackupManagerService svc = mService; local
    [all...]
  /bionic/libc/arch-arm64/bionic/
_exit_with_stack_teardown.S 34 svc #0
39 svc #0
  /frameworks/base/cmds/svc/
Android.mk 7 LOCAL_MODULE := svc
12 ALL_PREBUILT += $(TARGET_OUT)/bin/svc
13 $(TARGET_OUT)/bin/svc : $(LOCAL_PATH)/svc | $(ACP)
  /system/core/init/
signal_handler.cpp 63 service* svc = service_find_by_pid(pid); local
66 if (svc) {
67 name = android::base::StringPrintf("Service '%s' (pid %d)", svc->name, pid);
74 if (!svc) {
80 if (!(svc->flags & SVC_ONESHOT) || (svc->flags & SVC_RESTART)) {
81 NOTICE("Service '%s' (pid %d) killing any children in process group\n", svc->name, pid);
86 for (socketinfo* si = svc->sockets; si; si = si->next) {
92 if (svc->flags & SVC_EXEC) {
93 INFO("SVC_EXEC pid %d finished...\n", svc->pid)
    [all...]
keychords.cpp 35 void add_service_keycodes(struct service *svc)
40 if (svc->keycodes) {
42 size = sizeof(*keychord) + svc->nkeycodes * sizeof(keychord->keycodes[0]);
54 keychord->count = svc->nkeycodes;
55 svc->keychord_id = keychord->id;
57 for (i = 0; i < svc->nkeycodes; i++) {
58 keychord->keycodes[i] = svc->keycodes[i];
66 struct service *svc; local
72 property_get("init.svc.adbd", adb_enabled);
80 svc = service_find_by_keychord(id)
    [all...]
init_parser_test.cpp 80 service* svc = make_exec_oneshot_service(argc, argv); local
81 ASSERT_NE(nullptr, svc);
84 ASSERT_STREQ("u:r:su:s0", svc->seclabel);
86 ASSERT_EQ(nullptr, svc->seclabel);
89 ASSERT_EQ(decode_uid("log"), svc->uid);
91 ASSERT_EQ(0U, svc->uid);
94 ASSERT_EQ(decode_uid("shell"), svc->gid);
96 ASSERT_EQ(0U, svc->gid);
99 ASSERT_EQ(2U, svc->nr_supp_gids);
100 ASSERT_EQ(decode_uid("system"), svc->supp_gids[0])
    [all...]
init.cpp 108 if (snprintf(prop_name, sizeof(prop_name), "init.svc.%s", name) >= PROP_NAME_MAX) {
110 ERROR("Property name \"init.svc.%s\" too long; not setting to %s\n", name, new_state);
187 void service_start(struct service *svc, const char *dynamic_args)
191 svc->flags &= (~(SVC_DISABLED|SVC_RESTARTING|SVC_RESET|SVC_RESTART|SVC_DISABLED_START));
192 svc->time_started = 0;
197 if (svc->flags & SVC_RUNNING) {
201 bool needs_console = (svc->flags & SVC_CONSOLE);
203 ERROR("service '%s' requires console\n", svc->name);
204 svc->flags |= SVC_DISABLED;
209 if (stat(svc->args[0], &s) != 0)
482 struct service *svc = NULL; local
510 struct service *svc = service_find_by_name(name); local
521 struct service *svc = service_find_by_name(name); local
    [all...]
init_parser.cpp 82 service* svc = node_to_item(node, struct service, slist); local
83 INFO("service %s\n", svc->name);
84 INFO(" class '%s'\n", svc->classname);
86 for (int n = 0; n < svc->nargs; n++) {
87 INFO(" '%s'", svc->args[n]);
90 for (socketinfo* si = svc->sockets; si; si = si->next) {
473 struct service *svc; local
475 svc = node_to_item(node, struct service, slist);
476 if (!strcmp(svc->name, name)) {
477 return svc;
486 struct service *svc; local
499 struct service *svc; local
512 struct service *svc; local
523 struct service *svc; local
536 struct service *svc; local
690 service* svc = (service*) calloc(1, sizeof(*svc) + sizeof(char*) * argc); local
739 service* svc = (service*) service_find_by_name(args[1]); local
767 struct service *svc = (service*) state->context; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_svc_layercontext.c 18 SVC *const svc = &cpi->svc; local
22 int alt_ref_idx = svc->number_spatial_layers;
24 svc->spatial_layer_id = 0;
25 svc->temporal_layer_id = 0;
27 if (svc->number_temporal_layers > 1) {
28 layer_end = svc->number_temporal_layers;
30 layer_end = svc->number_spatial_layers;
34 LAYER_CONTEXT *const lc = &svc->layer_context[layer]
85 SVC *const svc = &cpi->svc; local
138 SVC *const svc = &cpi->svc; local
202 SVC *const svc = &cpi->svc; local
    [all...]
vp9_bitstream.h 28 (!cpi->use_svc || // Add spatial svc base layer case here
30 cpi->svc.spatial_layer_id == 0 &&
31 cpi->svc.layer_context[0].gold_ref_idx >=0 &&
  /frameworks/base/core/java/android/app/
StatusBarManager.java 118 final IStatusBarService svc = getService(); local
119 if (svc != null) {
120 svc.disable(what, mToken, mContext.getPackageName());
136 final IStatusBarService svc = getService(); local
137 if (svc != null) {
138 svc.disable2(what, mToken, mContext.getPackageName());
151 final IStatusBarService svc = getService(); local
152 if (svc != null) {
153 svc.expandNotificationsPanel();
166 final IStatusBarService svc = getService() local
181 final IStatusBarService svc = getService(); local
193 final IStatusBarService svc = getService(); local
206 final IStatusBarService svc = getService(); local
218 final IStatusBarService svc = getService(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/
svc_auth.h 38 #include <rpc/svc.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpc/
svc_auth.h 38 #include <rpc/svc.h>
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_svc_layercontext.c 21 cpi->svc.spatial_layer_id = 0;
22 cpi->svc.temporal_layer_id = 0;
24 if (cpi->svc.number_temporal_layers > 1) {
25 layer_end = cpi->svc.number_temporal_layers;
27 layer_end = cpi->svc.number_spatial_layers;
31 LAYER_CONTEXT *const lc = &cpi->svc.layer_context[layer];
47 if (cpi->svc.number_temporal_layers > 1) {
72 if (cpi->svc.number_temporal_layers > 1) {
73 layer_end = cpi->svc.number_temporal_layers;
75 layer_end = cpi->svc.number_spatial_layers
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraDeviceFactory.cpp 33 sp<CameraService> svc = sService.promote(); local
34 if (svc == 0) {
39 int deviceVersion = svc->getDeviceVersion(cameraId, /*facing*/NULL);
  /external/deqp/android/package/src/com/drawelements/deqp/execserver/
ServiceStarter.java 40 Intent svc = new Intent(this, com.drawelements.deqp.execserver.ExecService.class); local
41 startService(svc);
  /bionic/libc/arch-arm64/syscalls/
___clock_nanosleep.S 7 svc #0
___close.S 7 svc #0
___faccessat.S 7 svc #0
___fchmod.S 7 svc #0
___fchmodat.S 7 svc #0
___fgetxattr.S 7 svc #0
___fsetxattr.S 7 svc #0
___rt_sigqueueinfo.S 7 svc #0
__accept4.S 7 svc #0

Completed in 4782 milliseconds

1 2 3 4 5 6 7 8 91011>>