Home
last modified time | relevance | path

Searched defs:Service (Results 1 – 25 of 39) sorted by relevance

12

/third_party/pulseaudio/src/daemon/systemd/user/
Dpulseaudio.service.in19 [Service] section
20 ExecStart=@PA_BINARY@ --daemonize=no --log-target=journal
21 LockPersonality=yes
22 MemoryDenyWriteExecute=yes
23 NoNewPrivileges=yes
24 Restart=on-failure
25 RestrictNamespaces=yes
26 SystemCallArchitectures=native
27 SystemCallFilter=@system-service
29 Type=notify
[all …]
/third_party/nghttp2/contrib/
Dnghttpx.service.in6 [Service] section
7 Type=notify
8 ExecStart=@bindir@/nghttpx --conf=/etc/nghttpx/nghttpx.conf
9 ExecReload=/bin/kill --signal HUP $MAINPID
10 KillSignal=SIGQUIT
11 PrivateTmp=yes
12 ProtectHome=yes
13 ProtectSystem=full
14 Restart=always
/third_party/iptables/
Diptables.service6 [Service] section
7 Type=oneshot
8 RemainAfterExit=yes
9 ExecStart=/usr/libexec/iptables/iptables.init start
10 ExecReload=/usr/libexec/iptables/iptables.init reload
11 ExecStop=/usr/libexec/iptables/iptables.init stop
12 Environment=BOOTUP=serial
13 Environment=CONSOLETYPE=serial
/third_party/elfutils/config/
Ddebuginfod.service6 [Service] section
7 EnvironmentFile=/etc/sysconfig/debuginfod
8 User=debuginfod
9 Group=debuginfod
11 …p $DEBUGINFOD_PORT $DEBUGINFOD_VERBOSE $DEBUGINFOD_PRAGMAS $DEBUGINFOD_PATHS $DEBUGINFOD_EXTRA_ARGS
13 TimeoutStopSec=60
14 PrivateTmp=yes
/third_party/alsa-utils/alsactl/
Dalsa-restore.service.in11 [Service] section
12 Type=oneshot
13 RemainAfterExit=true
14 ExecStart=-@sbindir@/alsactl restore
15 ExecStop=-@sbindir@/alsactl store
Dalsa-state.service.in10 [Service] section
11 Type=simple
12 ExecStart=-@sbindir@/alsactl -s -n 19 -c rdaemon
13 ExecStop=-@sbindir@/alsactl -s kill save_and_quit
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/
Dfi.w1.wpa_supplicant1.service.in2 Name=fi.w1.wpa_supplicant1
3 Exec=@BINDIR@/wpa_supplicant -u
4 User=root
5 SystemdService=wpa_supplicant.service
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/
Dfi.w1.wpa_supplicant1.service.in2 Name=fi.w1.wpa_supplicant1
3 Exec=@BINDIR@/wpa_supplicant -u
4 User=root
5 SystemdService=wpa_supplicant.service
/third_party/libwebsockets/lwsws/
Dusr-lib-systemd-system-lwsws.service5 [Service] section
6 ExecStart=/usr/local/bin/lwsws
7 ExecReload=/usr/bin/kill -HUP $MAINPID
8 ExecStop=/usr/bin/killall lwsws
/third_party/libwebsockets/test-apps/
Dlibwebsockets-test-server.service5 [Service] section
6 …ockets.org.crt -K /etc/pki/tls/private/libwebsockets.org.key -A /etc/pki/tls/certs/libwebsockets.o…
7 Type=forking
8 PIDFile=/tmp/.lwsts-lock
/third_party/rust/crates/tracing/tracing-tower/src/
Drequest_span.rs10 pub struct Service<S, R, G = fn(&R) -> tracing::Span> struct
15 get_span: G,
16 inner: S,
17 _p: PhantomData<fn(R)>,
54 type Service = Service<S, R, G>; typedef
56 fn layer(&self, service: S) -> Self::Service { in layer()
133 type Service = MakeService<S, R, G>; typedef
135 fn layer(&self, inner: S) -> Self::Service { in layer()
233 impl<S, R, G> tower_service::Service<R> for Service<S, R, G> implementation
253 impl<S, R, G> Clone for Service<S, R, G> implementation
[all …]
Dservice_span.rs10 pub struct Service<S> { struct
32 S: tower_service::Service<R>, argument
56 type Service = Service<S>; typedef
58 fn layer(&self, inner: S) -> Self::Service { in layer()
133 type Service = MakeService<M, T, R, G>; typedef
135 fn layer(&self, inner: M) -> Self::Service { in layer()
223 impl<S> Service<S> { impl
229 impl<S, R> tower_service::Service<R> for Service<S> implementation
248 impl<S> Clone for Service<S> implementation
/third_party/typescript/tests/baselines/reference/
DdecoratorMetadataWithTypeOnlyImport.js4 export class Service { class
13 constructor(public Service: Service) {
26 function Service() { class in Service
44 function MyComponent(Service) { argument
DdecoratorMetadata.js4 export default class Service { class
13 constructor(public Service: Service) {
25 function Service() { class in Service
44 function MyComponent(Service) { argument
DcloduleGenericOnSelfMember.js5 class Service extends ServiceBase<typeof Service.Base> { class
37 function Service() { class in Service
42 (function (Service) { argument
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/systemd/
Dwpa_supplicant.service.in6 [Service] section
7 Type=dbus
8 BusName=fi.w1.wpa_supplicant1
9 ExecStart=@BINDIR@/wpa_supplicant -u
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/systemd/
Dwpa_supplicant.service.in7 [Service] section
8 Type=dbus
9 BusName=fi.w1.wpa_supplicant1
10 ExecStart=@BINDIR@/wpa_supplicant -u
/third_party/typescript/tests/cases/compiler/
DcloduleGenericOnSelfMember.ts4 class Service extends ServiceBase<typeof Service.Base> { class
6 namespace Service { namespace
DgenericIndexedAccessMethodIntersectionCanBeAccessed.ts9 type Service<T> = { alias
/third_party/typescript/tests/cases/conformance/decorators/
DdecoratorMetadataWithTypeOnlyImport.ts6 export class Service { class
15 constructor(public Service: Service) { property in MyComponent
DdecoratorMetadata.ts6 export default class Service { class
15 constructor(public Service: Service) { property in MyComponent
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/export_to_sheets/
Dmain.go250 func fetchRow(srv *sheets.Service, spreadsheet *sheets.Spreadsheet, sheet *sheets.Sheet, row int) (…
260 func fetchColumn(srv *sheets.Service, spreadsheet *sheets.Spreadsheet, sheet *sheets.Sheet, row int…
276 func insertRows(srv *sheets.Service, spreadsheet *sheets.Spreadsheet, sheet *sheets.Sheet, aboveRow…
297 func createTestListSheets(srv *sheets.Service, testlists testlist.Lists) error {
/third_party/protobuf/src/google/protobuf/
Dservice.h117 class Service; variable
134 inline Service() {} in Service() function
/third_party/cups-filters/utils/
Dcups-browsed.service7 [Service] section
8 ExecStart=/usr/sbin/cups-browsed
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DService.java46 public interface Service { interface

12