]> code.delx.au - gnu-emacs-elpa/blob - packages/systemd/systemd.el
New package systemd
[gnu-emacs-elpa] / packages / systemd / systemd.el
1 ;;; systemd.el --- Interface to Systemd -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 2016 Free Software Foundation, Inc.
4
5 ;; Author: Mario Lang <mlang@delysid.org>
6 ;; Keywords: comm
7 ;; Version: 0
8 ;; Package-Requires: ((cl-lib "0.5"))
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; This package provides D-Bus bindings, major modes and interactive commands
26 ;; for working with systemd from within Emacs.
27 ;;
28 ;; systemd-mode.el provides major modes for all systemd unit file types.
29 ;;
30 ;; systemctl.el provides interactive commands for managing units and
31 ;; their status. Similar to the command-line "systemctl" tool,
32 ;; working with remote hosts is supported. TRAMP is used to visit
33 ;; configuration files of remote instances of systemd.
34 ;;
35 ;; Last, but not least, this library, systemd.el, provides
36 ;; semi-autogenerated functions and generalized setters for the
37 ;; systemd D-Bus API. They have been generated using tools from
38 ;; systemd-codegen.el.
39
40 ;;; Code:
41
42 (require 'dbus)
43 (require 'gv)
44
45 (defun systemd-escape-dbus-address (string)
46 (apply #'concat (mapcar (lambda (c)
47 (if (or (and (>= c ?a) (<= c ?z))
48 (and (>= c ?A) (<= c ?Z))
49 (and (>= c ?0) (<= c ?9))
50 (= c ?-) (= c ?_)
51 (= c ?/) (= c ?\\)
52 (= c ?.))
53 (string c)
54 (format "%%%02x" c)))
55 string)))
56
57 (defun systemd-unescape-dbus-address (string)
58 (while (string-match "%\\([0-9a-f]\\{2\\}\\)" string)
59 (setq string
60 (replace-match
61 (string (string-to-number (match-string 1 string) 16)) t t string)))
62 string)
63
64 (defun systemd-remote-bus (host &optional address)
65 (unless address
66 (setq address "unix:path=/run/dbus/system_bus_socket"))
67 (concat "unixexec:"
68 "path=ssh"
69 ",argv1=-xT"
70 ",argv2=" (systemd-escape-dbus-address host)
71 ",argv3=systemd-stdio-bridge"
72 ",argv4=" (systemd-escape-dbus-address (concat "--bus-path=" address))))
73
74 (defconst systemd-dbus-service "org.freedesktop.systemd1")
75 (defconst systemd-dbus-path "/org/freedesktop/systemd1")
76
77 ;;; org.freedesktop.systemd1.Automount
78
79 (defconst systemd-dbus-interface-automount "org.freedesktop.systemd1.Automount")
80
81 (defun systemd-automount-Where (bus path)
82 "Read only property."
83 (dbus-get-property bus systemd-dbus-service path
84 systemd-dbus-interface-automount "Where"))
85
86 (defun systemd-automount-DirectoryMode (bus path)
87 "Read only property."
88 (dbus-get-property bus systemd-dbus-service path
89 systemd-dbus-interface-automount "DirectoryMode"))
90
91 (defun systemd-automount-Result (bus path)
92 "Read only property."
93 (dbus-get-property bus systemd-dbus-service path
94 systemd-dbus-interface-automount "Result"))
95
96 (defun systemd-automount-TimeoutIdleUSec (bus path)
97 "Read only property."
98 (dbus-get-property bus systemd-dbus-service path
99 systemd-dbus-interface-automount "TimeoutIdleUSec"))
100
101 ;;; org.freedesktop.systemd1.BusName
102
103 (defconst systemd-dbus-interface-bus-name "org.freedesktop.systemd1.BusName")
104
105 (defun systemd-bus-name-Name (bus path)
106 "Read only property."
107 (dbus-get-property bus systemd-dbus-service path
108 systemd-dbus-interface-bus-name "Name"))
109
110 (defun systemd-bus-name-TimeoutUSec (bus path)
111 "Read only property."
112 (dbus-get-property bus systemd-dbus-service path
113 systemd-dbus-interface-bus-name "TimeoutUSec"))
114
115 (defun systemd-bus-name-ControlPID (bus path)
116 "Read only property."
117 (dbus-get-property bus systemd-dbus-service path
118 systemd-dbus-interface-bus-name "ControlPID"))
119
120 (defun systemd-bus-name-Result (bus path)
121 "Read only property."
122 (dbus-get-property bus systemd-dbus-service path
123 systemd-dbus-interface-bus-name "Result"))
124
125 (defun systemd-bus-name-Activating (bus path)
126 "Read only property."
127 (dbus-get-property bus systemd-dbus-service path
128 systemd-dbus-interface-bus-name "Activating"))
129
130 (defun systemd-bus-name-AcceptFileDescriptors (bus path)
131 "Read only property."
132 (dbus-get-property bus systemd-dbus-service path
133 systemd-dbus-interface-bus-name "AcceptFileDescriptors"))
134
135 ;;; org.freedesktop.systemd1.Device
136
137 (defconst systemd-dbus-interface-device "org.freedesktop.systemd1.Device")
138
139 (defun systemd-device-SysFSPath (bus path)
140 "Read only property."
141 (dbus-get-property bus systemd-dbus-service path
142 systemd-dbus-interface-device "SysFSPath"))
143
144 ;;; org.freedesktop.systemd1.Manager
145
146 (defconst systemd-dbus-interface-manager "org.freedesktop.systemd1.Manager")
147
148 (defun systemd-Version (bus)
149 "Read only property."
150 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
151 systemd-dbus-interface-manager "Version"))
152
153 (defun systemd-Features (bus)
154 "Read only property."
155 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
156 systemd-dbus-interface-manager "Features"))
157
158 (defun systemd-Virtualization (bus)
159 "Read only property."
160 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
161 systemd-dbus-interface-manager "Virtualization"))
162
163 (defun systemd-Architecture (bus)
164 "Read only property."
165 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
166 systemd-dbus-interface-manager "Architecture"))
167
168 (defun systemd-Tainted (bus)
169 "Read only property."
170 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
171 systemd-dbus-interface-manager "Tainted"))
172
173 (defun systemd-FirmwareTimestamp (bus)
174 "Read only property."
175 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
176 systemd-dbus-interface-manager "FirmwareTimestamp"))
177
178 (defun systemd-FirmwareTimestampMonotonic (bus)
179 "Read only property."
180 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
181 systemd-dbus-interface-manager "FirmwareTimestampMonotonic"))
182
183 (defun systemd-LoaderTimestamp (bus)
184 "Read only property."
185 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
186 systemd-dbus-interface-manager "LoaderTimestamp"))
187
188 (defun systemd-LoaderTimestampMonotonic (bus)
189 "Read only property."
190 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
191 systemd-dbus-interface-manager "LoaderTimestampMonotonic"))
192
193 (defun systemd-KernelTimestamp (bus)
194 "Read only property."
195 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
196 systemd-dbus-interface-manager "KernelTimestamp"))
197
198 (defun systemd-KernelTimestampMonotonic (bus)
199 "Read only property."
200 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
201 systemd-dbus-interface-manager "KernelTimestampMonotonic"))
202
203 (defun systemd-InitRDTimestamp (bus)
204 "Read only property."
205 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
206 systemd-dbus-interface-manager "InitRDTimestamp"))
207
208 (defun systemd-InitRDTimestampMonotonic (bus)
209 "Read only property."
210 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
211 systemd-dbus-interface-manager "InitRDTimestampMonotonic"))
212
213 (defun systemd-UserspaceTimestamp (bus)
214 "Read only property."
215 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
216 systemd-dbus-interface-manager "UserspaceTimestamp"))
217
218 (defun systemd-UserspaceTimestampMonotonic (bus)
219 "Read only property."
220 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
221 systemd-dbus-interface-manager "UserspaceTimestampMonotonic"))
222
223 (defun systemd-FinishTimestamp (bus)
224 "Read only property."
225 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
226 systemd-dbus-interface-manager "FinishTimestamp"))
227
228 (defun systemd-FinishTimestampMonotonic (bus)
229 "Read only property."
230 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
231 systemd-dbus-interface-manager "FinishTimestampMonotonic"))
232
233 (defun systemd-SecurityStartTimestamp (bus)
234 "Read only property."
235 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
236 systemd-dbus-interface-manager "SecurityStartTimestamp"))
237
238 (defun systemd-SecurityStartTimestampMonotonic (bus)
239 "Read only property."
240 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
241 systemd-dbus-interface-manager "SecurityStartTimestampMonotonic"))
242
243 (defun systemd-SecurityFinishTimestamp (bus)
244 "Read only property."
245 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
246 systemd-dbus-interface-manager "SecurityFinishTimestamp"))
247
248 (defun systemd-SecurityFinishTimestampMonotonic (bus)
249 "Read only property."
250 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
251 systemd-dbus-interface-manager "SecurityFinishTimestampMonotonic"))
252
253 (defun systemd-GeneratorsStartTimestamp (bus)
254 "Read only property."
255 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
256 systemd-dbus-interface-manager "GeneratorsStartTimestamp"))
257
258 (defun systemd-GeneratorsStartTimestampMonotonic (bus)
259 "Read only property."
260 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
261 systemd-dbus-interface-manager "GeneratorsStartTimestampMonotonic"))
262
263 (defun systemd-GeneratorsFinishTimestamp (bus)
264 "Read only property."
265 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
266 systemd-dbus-interface-manager "GeneratorsFinishTimestamp"))
267
268 (defun systemd-GeneratorsFinishTimestampMonotonic (bus)
269 "Read only property."
270 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
271 systemd-dbus-interface-manager "GeneratorsFinishTimestampMonotonic"))
272
273 (defun systemd-UnitsLoadStartTimestamp (bus)
274 "Read only property."
275 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
276 systemd-dbus-interface-manager "UnitsLoadStartTimestamp"))
277
278 (defun systemd-UnitsLoadStartTimestampMonotonic (bus)
279 "Read only property."
280 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
281 systemd-dbus-interface-manager "UnitsLoadStartTimestampMonotonic"))
282
283 (defun systemd-UnitsLoadFinishTimestamp (bus)
284 "Read only property."
285 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
286 systemd-dbus-interface-manager "UnitsLoadFinishTimestamp"))
287
288 (defun systemd-UnitsLoadFinishTimestampMonotonic (bus)
289 "Read only property."
290 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
291 systemd-dbus-interface-manager "UnitsLoadFinishTimestampMonotonic"))
292
293 (defun systemd-LogLevel (bus)
294 "Use `setf' to set the value of this property."
295 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
296 systemd-dbus-interface-manager "LogLevel"))
297
298 (gv-define-setter systemd-LogLevel (value bus)
299 `(dbus-set-property ,bus systemd-dbus-service systemd-dbus-path
300 systemd-dbus-interface-manager "LogLevel" ,value))
301
302 (defun systemd-LogTarget (bus)
303 "Use `setf' to set the value of this property."
304 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
305 systemd-dbus-interface-manager "LogTarget"))
306
307 (gv-define-setter systemd-LogTarget (value bus)
308 `(dbus-set-property ,bus systemd-dbus-service systemd-dbus-path
309 systemd-dbus-interface-manager "LogTarget" ,value))
310
311 (defun systemd-NNames (bus)
312 "Read only property."
313 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
314 systemd-dbus-interface-manager "NNames"))
315
316 (defun systemd-NFailedUnits (bus)
317 "Read only property."
318 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
319 systemd-dbus-interface-manager "NFailedUnits"))
320
321 (defun systemd-NJobs (bus)
322 "Read only property."
323 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
324 systemd-dbus-interface-manager "NJobs"))
325
326 (defun systemd-NInstalledJobs (bus)
327 "Read only property."
328 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
329 systemd-dbus-interface-manager "NInstalledJobs"))
330
331 (defun systemd-NFailedJobs (bus)
332 "Read only property."
333 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
334 systemd-dbus-interface-manager "NFailedJobs"))
335
336 (defun systemd-Progress (bus)
337 "Read only property."
338 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
339 systemd-dbus-interface-manager "Progress"))
340
341 (defun systemd-Environment (bus)
342 "Read only property."
343 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
344 systemd-dbus-interface-manager "Environment"))
345
346 (defun systemd-ConfirmSpawn (bus)
347 "Read only property."
348 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
349 systemd-dbus-interface-manager "ConfirmSpawn"))
350
351 (defun systemd-ShowStatus (bus)
352 "Read only property."
353 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
354 systemd-dbus-interface-manager "ShowStatus"))
355
356 (defun systemd-UnitPath (bus)
357 "Read only property."
358 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
359 systemd-dbus-interface-manager "UnitPath"))
360
361 (defun systemd-DefaultStandardOutput (bus)
362 "Read only property."
363 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
364 systemd-dbus-interface-manager "DefaultStandardOutput"))
365
366 (defun systemd-DefaultStandardError (bus)
367 "Read only property."
368 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
369 systemd-dbus-interface-manager "DefaultStandardError"))
370
371 (defun systemd-RuntimeWatchdogUSec (bus)
372 "Use `setf' to set the value of this property."
373 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
374 systemd-dbus-interface-manager "RuntimeWatchdogUSec"))
375
376 (gv-define-setter systemd-RuntimeWatchdogUSec (value bus)
377 `(dbus-set-property ,bus systemd-dbus-service systemd-dbus-path
378 systemd-dbus-interface-manager "RuntimeWatchdogUSec" ,value))
379
380 (defun systemd-ShutdownWatchdogUSec (bus)
381 "Use `setf' to set the value of this property."
382 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
383 systemd-dbus-interface-manager "ShutdownWatchdogUSec"))
384
385 (gv-define-setter systemd-ShutdownWatchdogUSec (value bus)
386 `(dbus-set-property ,bus systemd-dbus-service systemd-dbus-path
387 systemd-dbus-interface-manager "ShutdownWatchdogUSec" ,value))
388
389 (defun systemd-ControlGroup (bus)
390 "Read only property."
391 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
392 systemd-dbus-interface-manager "ControlGroup"))
393
394 (defun systemd-SystemState (bus)
395 "Read only property."
396 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
397 systemd-dbus-interface-manager "SystemState"))
398
399 (defun systemd-ExitCode (bus)
400 "Read only property."
401 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
402 systemd-dbus-interface-manager "ExitCode"))
403
404 (defun systemd-DefaultTimerAccuracyUSec (bus)
405 "Read only property."
406 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
407 systemd-dbus-interface-manager "DefaultTimerAccuracyUSec"))
408
409 (defun systemd-DefaultTimeoutStartUSec (bus)
410 "Read only property."
411 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
412 systemd-dbus-interface-manager "DefaultTimeoutStartUSec"))
413
414 (defun systemd-DefaultTimeoutStopUSec (bus)
415 "Read only property."
416 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
417 systemd-dbus-interface-manager "DefaultTimeoutStopUSec"))
418
419 (defun systemd-DefaultRestartUSec (bus)
420 "Read only property."
421 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
422 systemd-dbus-interface-manager "DefaultRestartUSec"))
423
424 (defun systemd-DefaultStartLimitIntervalSec (bus)
425 "Read only property."
426 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
427 systemd-dbus-interface-manager "DefaultStartLimitIntervalSec"))
428
429 (defun systemd-DefaultStartLimitBurst (bus)
430 "Read only property."
431 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
432 systemd-dbus-interface-manager "DefaultStartLimitBurst"))
433
434 (defun systemd-DefaultCPUAccounting (bus)
435 "Read only property."
436 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
437 systemd-dbus-interface-manager "DefaultCPUAccounting"))
438
439 (defun systemd-DefaultBlockIOAccounting (bus)
440 "Read only property."
441 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
442 systemd-dbus-interface-manager "DefaultBlockIOAccounting"))
443
444 (defun systemd-DefaultMemoryAccounting (bus)
445 "Read only property."
446 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
447 systemd-dbus-interface-manager "DefaultMemoryAccounting"))
448
449 (defun systemd-DefaultTasksAccounting (bus)
450 "Read only property."
451 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
452 systemd-dbus-interface-manager "DefaultTasksAccounting"))
453
454 (defun systemd-DefaultLimitCPU (bus)
455 "Read only property."
456 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
457 systemd-dbus-interface-manager "DefaultLimitCPU"))
458
459 (defun systemd-DefaultLimitCPUSoft (bus)
460 "Read only property."
461 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
462 systemd-dbus-interface-manager "DefaultLimitCPUSoft"))
463
464 (defun systemd-DefaultLimitFSIZE (bus)
465 "Read only property."
466 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
467 systemd-dbus-interface-manager "DefaultLimitFSIZE"))
468
469 (defun systemd-DefaultLimitFSIZESoft (bus)
470 "Read only property."
471 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
472 systemd-dbus-interface-manager "DefaultLimitFSIZESoft"))
473
474 (defun systemd-DefaultLimitDATA (bus)
475 "Read only property."
476 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
477 systemd-dbus-interface-manager "DefaultLimitDATA"))
478
479 (defun systemd-DefaultLimitDATASoft (bus)
480 "Read only property."
481 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
482 systemd-dbus-interface-manager "DefaultLimitDATASoft"))
483
484 (defun systemd-DefaultLimitSTACK (bus)
485 "Read only property."
486 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
487 systemd-dbus-interface-manager "DefaultLimitSTACK"))
488
489 (defun systemd-DefaultLimitSTACKSoft (bus)
490 "Read only property."
491 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
492 systemd-dbus-interface-manager "DefaultLimitSTACKSoft"))
493
494 (defun systemd-DefaultLimitCORE (bus)
495 "Read only property."
496 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
497 systemd-dbus-interface-manager "DefaultLimitCORE"))
498
499 (defun systemd-DefaultLimitCORESoft (bus)
500 "Read only property."
501 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
502 systemd-dbus-interface-manager "DefaultLimitCORESoft"))
503
504 (defun systemd-DefaultLimitRSS (bus)
505 "Read only property."
506 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
507 systemd-dbus-interface-manager "DefaultLimitRSS"))
508
509 (defun systemd-DefaultLimitRSSSoft (bus)
510 "Read only property."
511 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
512 systemd-dbus-interface-manager "DefaultLimitRSSSoft"))
513
514 (defun systemd-DefaultLimitNOFILE (bus)
515 "Read only property."
516 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
517 systemd-dbus-interface-manager "DefaultLimitNOFILE"))
518
519 (defun systemd-DefaultLimitNOFILESoft (bus)
520 "Read only property."
521 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
522 systemd-dbus-interface-manager "DefaultLimitNOFILESoft"))
523
524 (defun systemd-DefaultLimitAS (bus)
525 "Read only property."
526 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
527 systemd-dbus-interface-manager "DefaultLimitAS"))
528
529 (defun systemd-DefaultLimitASSoft (bus)
530 "Read only property."
531 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
532 systemd-dbus-interface-manager "DefaultLimitASSoft"))
533
534 (defun systemd-DefaultLimitNPROC (bus)
535 "Read only property."
536 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
537 systemd-dbus-interface-manager "DefaultLimitNPROC"))
538
539 (defun systemd-DefaultLimitNPROCSoft (bus)
540 "Read only property."
541 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
542 systemd-dbus-interface-manager "DefaultLimitNPROCSoft"))
543
544 (defun systemd-DefaultLimitMEMLOCK (bus)
545 "Read only property."
546 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
547 systemd-dbus-interface-manager "DefaultLimitMEMLOCK"))
548
549 (defun systemd-DefaultLimitMEMLOCKSoft (bus)
550 "Read only property."
551 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
552 systemd-dbus-interface-manager "DefaultLimitMEMLOCKSoft"))
553
554 (defun systemd-DefaultLimitLOCKS (bus)
555 "Read only property."
556 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
557 systemd-dbus-interface-manager "DefaultLimitLOCKS"))
558
559 (defun systemd-DefaultLimitLOCKSSoft (bus)
560 "Read only property."
561 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
562 systemd-dbus-interface-manager "DefaultLimitLOCKSSoft"))
563
564 (defun systemd-DefaultLimitSIGPENDING (bus)
565 "Read only property."
566 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
567 systemd-dbus-interface-manager "DefaultLimitSIGPENDING"))
568
569 (defun systemd-DefaultLimitSIGPENDINGSoft (bus)
570 "Read only property."
571 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
572 systemd-dbus-interface-manager "DefaultLimitSIGPENDINGSoft"))
573
574 (defun systemd-DefaultLimitMSGQUEUE (bus)
575 "Read only property."
576 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
577 systemd-dbus-interface-manager "DefaultLimitMSGQUEUE"))
578
579 (defun systemd-DefaultLimitMSGQUEUESoft (bus)
580 "Read only property."
581 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
582 systemd-dbus-interface-manager "DefaultLimitMSGQUEUESoft"))
583
584 (defun systemd-DefaultLimitNICE (bus)
585 "Read only property."
586 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
587 systemd-dbus-interface-manager "DefaultLimitNICE"))
588
589 (defun systemd-DefaultLimitNICESoft (bus)
590 "Read only property."
591 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
592 systemd-dbus-interface-manager "DefaultLimitNICESoft"))
593
594 (defun systemd-DefaultLimitRTPRIO (bus)
595 "Read only property."
596 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
597 systemd-dbus-interface-manager "DefaultLimitRTPRIO"))
598
599 (defun systemd-DefaultLimitRTPRIOSoft (bus)
600 "Read only property."
601 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
602 systemd-dbus-interface-manager "DefaultLimitRTPRIOSoft"))
603
604 (defun systemd-DefaultLimitRTTIME (bus)
605 "Read only property."
606 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
607 systemd-dbus-interface-manager "DefaultLimitRTTIME"))
608
609 (defun systemd-DefaultLimitRTTIMESoft (bus)
610 "Read only property."
611 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
612 systemd-dbus-interface-manager "DefaultLimitRTTIMESoft"))
613
614 (defun systemd-DefaultTasksMax (bus)
615 "Read only property."
616 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
617 systemd-dbus-interface-manager "DefaultTasksMax"))
618
619 (defun systemd-TimerSlackNSec (bus)
620 "Read only property."
621 (dbus-get-property bus systemd-dbus-service systemd-dbus-path
622 systemd-dbus-interface-manager "TimerSlackNSec"))
623
624 (defun systemd-GetUnit (bus &rest args)
625 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
626 systemd-dbus-interface-manager "GetUnit" args))
627
628 (defun systemd-GetUnitByPID (bus &rest args)
629 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
630 systemd-dbus-interface-manager "GetUnitByPID" args))
631
632 (defun systemd-LoadUnit (bus &rest args)
633 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
634 systemd-dbus-interface-manager "LoadUnit" args))
635
636 (defun systemd-StartUnit (bus &rest args)
637 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
638 systemd-dbus-interface-manager "StartUnit" args))
639
640 (defun systemd-StartUnitReplace (bus &rest args)
641 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
642 systemd-dbus-interface-manager "StartUnitReplace" args))
643
644 (defun systemd-StopUnit (bus &rest args)
645 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
646 systemd-dbus-interface-manager "StopUnit" args))
647
648 (defun systemd-ReloadUnit (bus &rest args)
649 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
650 systemd-dbus-interface-manager "ReloadUnit" args))
651
652 (defun systemd-RestartUnit (bus &rest args)
653 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
654 systemd-dbus-interface-manager "RestartUnit" args))
655
656 (defun systemd-TryRestartUnit (bus &rest args)
657 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
658 systemd-dbus-interface-manager "TryRestartUnit" args))
659
660 (defun systemd-ReloadOrRestartUnit (bus &rest args)
661 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
662 systemd-dbus-interface-manager "ReloadOrRestartUnit" args))
663
664 (defun systemd-ReloadOrTryRestartUnit (bus &rest args)
665 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
666 systemd-dbus-interface-manager "ReloadOrTryRestartUnit" args))
667
668 (defun systemd-KillUnit (bus &rest args)
669 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
670 systemd-dbus-interface-manager "KillUnit" args))
671
672 (defun systemd-ResetFailedUnit (bus &rest args)
673 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
674 systemd-dbus-interface-manager "ResetFailedUnit" args))
675
676 (defun systemd-SetUnitProperties (bus &rest args)
677 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
678 systemd-dbus-interface-manager "SetUnitProperties" args))
679
680 (defun systemd-StartTransientUnit (bus &rest args)
681 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
682 systemd-dbus-interface-manager "StartTransientUnit" args))
683
684 (defun systemd-GetUnitProcesses (bus &rest args)
685 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
686 systemd-dbus-interface-manager "GetUnitProcesses" args))
687
688 (defun systemd-GetJob (bus &rest args)
689 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
690 systemd-dbus-interface-manager "GetJob" args))
691
692 (defun systemd-CancelJob (bus &rest args)
693 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
694 systemd-dbus-interface-manager "CancelJob" args))
695
696 (defun systemd-ClearJobs (bus)
697 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
698 systemd-dbus-interface-manager "ClearJobs"))
699
700 (defun systemd-ResetFailed (bus)
701 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
702 systemd-dbus-interface-manager "ResetFailed"))
703
704 (defun systemd-ListUnits (bus)
705 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
706 systemd-dbus-interface-manager "ListUnits"))
707
708 (defun systemd-ListUnitsFiltered (bus &rest args)
709 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
710 systemd-dbus-interface-manager "ListUnitsFiltered" args))
711
712 (defun systemd-ListUnitsByPatterns (bus &rest args)
713 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
714 systemd-dbus-interface-manager "ListUnitsByPatterns" args))
715
716 (defun systemd-ListUnitsByNames (bus &rest args)
717 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
718 systemd-dbus-interface-manager "ListUnitsByNames" args))
719
720 (defun systemd-ListJobs (bus)
721 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
722 systemd-dbus-interface-manager "ListJobs"))
723
724 (defun systemd-Subscribe (bus)
725 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
726 systemd-dbus-interface-manager "Subscribe"))
727
728 (defun systemd-Unsubscribe (bus)
729 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
730 systemd-dbus-interface-manager "Unsubscribe"))
731
732 (defun systemd-Dump (bus)
733 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
734 systemd-dbus-interface-manager "Dump"))
735
736 (defun systemd-CreateSnapshot (bus &rest args)
737 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
738 systemd-dbus-interface-manager "CreateSnapshot" args))
739
740 (defun systemd-RemoveSnapshot (bus &rest args)
741 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
742 systemd-dbus-interface-manager "RemoveSnapshot" args))
743
744 (defun systemd-Reload (bus)
745 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
746 systemd-dbus-interface-manager "Reload"))
747
748 (defun systemd-Reexecute (bus)
749 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
750 systemd-dbus-interface-manager "Reexecute"))
751
752 (defun systemd-Exit (bus)
753 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
754 systemd-dbus-interface-manager "Exit"))
755
756 (defun systemd-Reboot (bus)
757 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
758 systemd-dbus-interface-manager "Reboot"))
759
760 (defun systemd-PowerOff (bus)
761 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
762 systemd-dbus-interface-manager "PowerOff"))
763
764 (defun systemd-Halt (bus)
765 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
766 systemd-dbus-interface-manager "Halt"))
767
768 (defun systemd-KExec (bus)
769 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
770 systemd-dbus-interface-manager "KExec"))
771
772 (defun systemd-SwitchRoot (bus &rest args)
773 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
774 systemd-dbus-interface-manager "SwitchRoot" args))
775
776 (defun systemd-SetEnvironment (bus &rest args)
777 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
778 systemd-dbus-interface-manager "SetEnvironment" args))
779
780 (defun systemd-UnsetEnvironment (bus &rest args)
781 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
782 systemd-dbus-interface-manager "UnsetEnvironment" args))
783
784 (defun systemd-UnsetAndSetEnvironment (bus &rest args)
785 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
786 systemd-dbus-interface-manager "UnsetAndSetEnvironment" args))
787
788 (defun systemd-ListUnitFiles (bus)
789 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
790 systemd-dbus-interface-manager "ListUnitFiles"))
791
792 (defun systemd-ListUnitFilesByPatterns (bus &rest args)
793 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
794 systemd-dbus-interface-manager "ListUnitFilesByPatterns" args))
795
796 (defun systemd-GetUnitFileState (bus &rest args)
797 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
798 systemd-dbus-interface-manager "GetUnitFileState" args))
799
800 (defun systemd-EnableUnitFiles (bus &rest args)
801 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
802 systemd-dbus-interface-manager "EnableUnitFiles" args))
803
804 (defun systemd-DisableUnitFiles (bus &rest args)
805 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
806 systemd-dbus-interface-manager "DisableUnitFiles" args))
807
808 (defun systemd-ReenableUnitFiles (bus &rest args)
809 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
810 systemd-dbus-interface-manager "ReenableUnitFiles" args))
811
812 (defun systemd-LinkUnitFiles (bus &rest args)
813 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
814 systemd-dbus-interface-manager "LinkUnitFiles" args))
815
816 (defun systemd-PresetUnitFiles (bus &rest args)
817 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
818 systemd-dbus-interface-manager "PresetUnitFiles" args))
819
820 (defun systemd-PresetUnitFilesWithMode (bus &rest args)
821 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
822 systemd-dbus-interface-manager "PresetUnitFilesWithMode" args))
823
824 (defun systemd-MaskUnitFiles (bus &rest args)
825 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
826 systemd-dbus-interface-manager "MaskUnitFiles" args))
827
828 (defun systemd-UnmaskUnitFiles (bus &rest args)
829 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
830 systemd-dbus-interface-manager "UnmaskUnitFiles" args))
831
832 (defun systemd-RevertUnitFiles (bus &rest args)
833 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
834 systemd-dbus-interface-manager "RevertUnitFiles" args))
835
836 (defun systemd-SetDefaultTarget (bus &rest args)
837 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
838 systemd-dbus-interface-manager "SetDefaultTarget" args))
839
840 (defun systemd-GetDefaultTarget (bus)
841 (dbus-call-method bus systemd-dbus-service systemd-dbus-path
842 systemd-dbus-interface-manager "GetDefaultTarget"))
843
844 (defun systemd-PresetAllUnitFiles (bus &rest args)
845 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
846 systemd-dbus-interface-manager "PresetAllUnitFiles" args))
847
848 (defun systemd-AddDependencyUnitFiles (bus &rest args)
849 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
850 systemd-dbus-interface-manager "AddDependencyUnitFiles" args))
851
852 (defun systemd-SetExitCode (bus &rest args)
853 (apply #'dbus-call-method bus systemd-dbus-service systemd-dbus-path
854 systemd-dbus-interface-manager "SetExitCode" args))
855
856 ;;; org.freedesktop.systemd1.Mount
857
858 (defconst systemd-dbus-interface-mount "org.freedesktop.systemd1.Mount")
859
860 (defun systemd-mount-Where (bus path)
861 "Read only property."
862 (dbus-get-property bus systemd-dbus-service path
863 systemd-dbus-interface-mount "Where"))
864
865 (defun systemd-mount-What (bus path)
866 "Read only property."
867 (dbus-get-property bus systemd-dbus-service path
868 systemd-dbus-interface-mount "What"))
869
870 (defun systemd-mount-Options (bus path)
871 "Read only property."
872 (dbus-get-property bus systemd-dbus-service path
873 systemd-dbus-interface-mount "Options"))
874
875 (defun systemd-mount-Type (bus path)
876 "Read only property."
877 (dbus-get-property bus systemd-dbus-service path
878 systemd-dbus-interface-mount "Type"))
879
880 (defun systemd-mount-TimeoutUSec (bus path)
881 "Read only property."
882 (dbus-get-property bus systemd-dbus-service path
883 systemd-dbus-interface-mount "TimeoutUSec"))
884
885 (defun systemd-mount-ControlPID (bus path)
886 "Read only property."
887 (dbus-get-property bus systemd-dbus-service path
888 systemd-dbus-interface-mount "ControlPID"))
889
890 (defun systemd-mount-DirectoryMode (bus path)
891 "Read only property."
892 (dbus-get-property bus systemd-dbus-service path
893 systemd-dbus-interface-mount "DirectoryMode"))
894
895 (defun systemd-mount-SloppyOptions (bus path)
896 "Read only property."
897 (dbus-get-property bus systemd-dbus-service path
898 systemd-dbus-interface-mount "SloppyOptions"))
899
900 (defun systemd-mount-Result (bus path)
901 "Read only property."
902 (dbus-get-property bus systemd-dbus-service path
903 systemd-dbus-interface-mount "Result"))
904
905 (defun systemd-mount-ExecMount (bus path)
906 "Read only property."
907 (dbus-get-property bus systemd-dbus-service path
908 systemd-dbus-interface-mount "ExecMount"))
909
910 (defun systemd-mount-ExecUnmount (bus path)
911 "Read only property."
912 (dbus-get-property bus systemd-dbus-service path
913 systemd-dbus-interface-mount "ExecUnmount"))
914
915 (defun systemd-mount-ExecRemount (bus path)
916 "Read only property."
917 (dbus-get-property bus systemd-dbus-service path
918 systemd-dbus-interface-mount "ExecRemount"))
919
920 (defun systemd-mount-Slice (bus path)
921 "Read only property."
922 (dbus-get-property bus systemd-dbus-service path
923 systemd-dbus-interface-mount "Slice"))
924
925 (defun systemd-mount-ControlGroup (bus path)
926 "Read only property."
927 (dbus-get-property bus systemd-dbus-service path
928 systemd-dbus-interface-mount "ControlGroup"))
929
930 (defun systemd-mount-MemoryCurrent (bus path)
931 "Read only property."
932 (dbus-get-property bus systemd-dbus-service path
933 systemd-dbus-interface-mount "MemoryCurrent"))
934
935 (defun systemd-mount-CPUUsageNSec (bus path)
936 "Read only property."
937 (dbus-get-property bus systemd-dbus-service path
938 systemd-dbus-interface-mount "CPUUsageNSec"))
939
940 (defun systemd-mount-TasksCurrent (bus path)
941 "Read only property."
942 (dbus-get-property bus systemd-dbus-service path
943 systemd-dbus-interface-mount "TasksCurrent"))
944
945 (defun systemd-mount-GetProcesses (bus path)
946 (dbus-call-method bus systemd-dbus-service path
947 systemd-dbus-interface-mount "GetProcesses"))
948
949 (defun systemd-mount-Delegate (bus path)
950 "Read only property."
951 (dbus-get-property bus systemd-dbus-service path
952 systemd-dbus-interface-mount "Delegate"))
953
954 (defun systemd-mount-CPUAccounting (bus path)
955 "Read only property."
956 (dbus-get-property bus systemd-dbus-service path
957 systemd-dbus-interface-mount "CPUAccounting"))
958
959 (defun systemd-mount-CPUShares (bus path)
960 "Read only property."
961 (dbus-get-property bus systemd-dbus-service path
962 systemd-dbus-interface-mount "CPUShares"))
963
964 (defun systemd-mount-StartupCPUShares (bus path)
965 "Read only property."
966 (dbus-get-property bus systemd-dbus-service path
967 systemd-dbus-interface-mount "StartupCPUShares"))
968
969 (defun systemd-mount-CPUQuotaPerSecUSec (bus path)
970 "Read only property."
971 (dbus-get-property bus systemd-dbus-service path
972 systemd-dbus-interface-mount "CPUQuotaPerSecUSec"))
973
974 (defun systemd-mount-IOAccounting (bus path)
975 "Read only property."
976 (dbus-get-property bus systemd-dbus-service path
977 systemd-dbus-interface-mount "IOAccounting"))
978
979 (defun systemd-mount-IOWeight (bus path)
980 "Read only property."
981 (dbus-get-property bus systemd-dbus-service path
982 systemd-dbus-interface-mount "IOWeight"))
983
984 (defun systemd-mount-StartupIOWeight (bus path)
985 "Read only property."
986 (dbus-get-property bus systemd-dbus-service path
987 systemd-dbus-interface-mount "StartupIOWeight"))
988
989 (defun systemd-mount-IODeviceWeight (bus path)
990 "Read only property."
991 (dbus-get-property bus systemd-dbus-service path
992 systemd-dbus-interface-mount "IODeviceWeight"))
993
994 (defun systemd-mount-IOReadBandwidthMax (bus path)
995 "Read only property."
996 (dbus-get-property bus systemd-dbus-service path
997 systemd-dbus-interface-mount "IOReadBandwidthMax"))
998
999 (defun systemd-mount-IOWriteBandwidthMax (bus path)
1000 "Read only property."
1001 (dbus-get-property bus systemd-dbus-service path
1002 systemd-dbus-interface-mount "IOWriteBandwidthMax"))
1003
1004 (defun systemd-mount-IOReadIOPSMax (bus path)
1005 "Read only property."
1006 (dbus-get-property bus systemd-dbus-service path
1007 systemd-dbus-interface-mount "IOReadIOPSMax"))
1008
1009 (defun systemd-mount-IOWriteIOPSMax (bus path)
1010 "Read only property."
1011 (dbus-get-property bus systemd-dbus-service path
1012 systemd-dbus-interface-mount "IOWriteIOPSMax"))
1013
1014 (defun systemd-mount-BlockIOAccounting (bus path)
1015 "Read only property."
1016 (dbus-get-property bus systemd-dbus-service path
1017 systemd-dbus-interface-mount "BlockIOAccounting"))
1018
1019 (defun systemd-mount-BlockIOWeight (bus path)
1020 "Read only property."
1021 (dbus-get-property bus systemd-dbus-service path
1022 systemd-dbus-interface-mount "BlockIOWeight"))
1023
1024 (defun systemd-mount-StartupBlockIOWeight (bus path)
1025 "Read only property."
1026 (dbus-get-property bus systemd-dbus-service path
1027 systemd-dbus-interface-mount "StartupBlockIOWeight"))
1028
1029 (defun systemd-mount-BlockIODeviceWeight (bus path)
1030 "Read only property."
1031 (dbus-get-property bus systemd-dbus-service path
1032 systemd-dbus-interface-mount "BlockIODeviceWeight"))
1033
1034 (defun systemd-mount-BlockIOReadBandwidth (bus path)
1035 "Read only property."
1036 (dbus-get-property bus systemd-dbus-service path
1037 systemd-dbus-interface-mount "BlockIOReadBandwidth"))
1038
1039 (defun systemd-mount-BlockIOWriteBandwidth (bus path)
1040 "Read only property."
1041 (dbus-get-property bus systemd-dbus-service path
1042 systemd-dbus-interface-mount "BlockIOWriteBandwidth"))
1043
1044 (defun systemd-mount-MemoryAccounting (bus path)
1045 "Read only property."
1046 (dbus-get-property bus systemd-dbus-service path
1047 systemd-dbus-interface-mount "MemoryAccounting"))
1048
1049 (defun systemd-mount-MemoryLimit (bus path)
1050 "Read only property."
1051 (dbus-get-property bus systemd-dbus-service path
1052 systemd-dbus-interface-mount "MemoryLimit"))
1053
1054 (defun systemd-mount-DevicePolicy (bus path)
1055 "Read only property."
1056 (dbus-get-property bus systemd-dbus-service path
1057 systemd-dbus-interface-mount "DevicePolicy"))
1058
1059 (defun systemd-mount-DeviceAllow (bus path)
1060 "Read only property."
1061 (dbus-get-property bus systemd-dbus-service path
1062 systemd-dbus-interface-mount "DeviceAllow"))
1063
1064 (defun systemd-mount-TasksAccounting (bus path)
1065 "Read only property."
1066 (dbus-get-property bus systemd-dbus-service path
1067 systemd-dbus-interface-mount "TasksAccounting"))
1068
1069 (defun systemd-mount-TasksMax (bus path)
1070 "Read only property."
1071 (dbus-get-property bus systemd-dbus-service path
1072 systemd-dbus-interface-mount "TasksMax"))
1073
1074 (defun systemd-mount-Environment (bus path)
1075 "Read only property."
1076 (dbus-get-property bus systemd-dbus-service path
1077 systemd-dbus-interface-mount "Environment"))
1078
1079 (defun systemd-mount-EnvironmentFiles (bus path)
1080 "Read only property."
1081 (dbus-get-property bus systemd-dbus-service path
1082 systemd-dbus-interface-mount "EnvironmentFiles"))
1083
1084 (defun systemd-mount-PassEnvironment (bus path)
1085 "Read only property."
1086 (dbus-get-property bus systemd-dbus-service path
1087 systemd-dbus-interface-mount "PassEnvironment"))
1088
1089 (defun systemd-mount-UMask (bus path)
1090 "Read only property."
1091 (dbus-get-property bus systemd-dbus-service path
1092 systemd-dbus-interface-mount "UMask"))
1093
1094 (defun systemd-mount-LimitCPU (bus path)
1095 "Read only property."
1096 (dbus-get-property bus systemd-dbus-service path
1097 systemd-dbus-interface-mount "LimitCPU"))
1098
1099 (defun systemd-mount-LimitCPUSoft (bus path)
1100 "Read only property."
1101 (dbus-get-property bus systemd-dbus-service path
1102 systemd-dbus-interface-mount "LimitCPUSoft"))
1103
1104 (defun systemd-mount-LimitFSIZE (bus path)
1105 "Read only property."
1106 (dbus-get-property bus systemd-dbus-service path
1107 systemd-dbus-interface-mount "LimitFSIZE"))
1108
1109 (defun systemd-mount-LimitFSIZESoft (bus path)
1110 "Read only property."
1111 (dbus-get-property bus systemd-dbus-service path
1112 systemd-dbus-interface-mount "LimitFSIZESoft"))
1113
1114 (defun systemd-mount-LimitDATA (bus path)
1115 "Read only property."
1116 (dbus-get-property bus systemd-dbus-service path
1117 systemd-dbus-interface-mount "LimitDATA"))
1118
1119 (defun systemd-mount-LimitDATASoft (bus path)
1120 "Read only property."
1121 (dbus-get-property bus systemd-dbus-service path
1122 systemd-dbus-interface-mount "LimitDATASoft"))
1123
1124 (defun systemd-mount-LimitSTACK (bus path)
1125 "Read only property."
1126 (dbus-get-property bus systemd-dbus-service path
1127 systemd-dbus-interface-mount "LimitSTACK"))
1128
1129 (defun systemd-mount-LimitSTACKSoft (bus path)
1130 "Read only property."
1131 (dbus-get-property bus systemd-dbus-service path
1132 systemd-dbus-interface-mount "LimitSTACKSoft"))
1133
1134 (defun systemd-mount-LimitCORE (bus path)
1135 "Read only property."
1136 (dbus-get-property bus systemd-dbus-service path
1137 systemd-dbus-interface-mount "LimitCORE"))
1138
1139 (defun systemd-mount-LimitCORESoft (bus path)
1140 "Read only property."
1141 (dbus-get-property bus systemd-dbus-service path
1142 systemd-dbus-interface-mount "LimitCORESoft"))
1143
1144 (defun systemd-mount-LimitRSS (bus path)
1145 "Read only property."
1146 (dbus-get-property bus systemd-dbus-service path
1147 systemd-dbus-interface-mount "LimitRSS"))
1148
1149 (defun systemd-mount-LimitRSSSoft (bus path)
1150 "Read only property."
1151 (dbus-get-property bus systemd-dbus-service path
1152 systemd-dbus-interface-mount "LimitRSSSoft"))
1153
1154 (defun systemd-mount-LimitNOFILE (bus path)
1155 "Read only property."
1156 (dbus-get-property bus systemd-dbus-service path
1157 systemd-dbus-interface-mount "LimitNOFILE"))
1158
1159 (defun systemd-mount-LimitNOFILESoft (bus path)
1160 "Read only property."
1161 (dbus-get-property bus systemd-dbus-service path
1162 systemd-dbus-interface-mount "LimitNOFILESoft"))
1163
1164 (defun systemd-mount-LimitAS (bus path)
1165 "Read only property."
1166 (dbus-get-property bus systemd-dbus-service path
1167 systemd-dbus-interface-mount "LimitAS"))
1168
1169 (defun systemd-mount-LimitASSoft (bus path)
1170 "Read only property."
1171 (dbus-get-property bus systemd-dbus-service path
1172 systemd-dbus-interface-mount "LimitASSoft"))
1173
1174 (defun systemd-mount-LimitNPROC (bus path)
1175 "Read only property."
1176 (dbus-get-property bus systemd-dbus-service path
1177 systemd-dbus-interface-mount "LimitNPROC"))
1178
1179 (defun systemd-mount-LimitNPROCSoft (bus path)
1180 "Read only property."
1181 (dbus-get-property bus systemd-dbus-service path
1182 systemd-dbus-interface-mount "LimitNPROCSoft"))
1183
1184 (defun systemd-mount-LimitMEMLOCK (bus path)
1185 "Read only property."
1186 (dbus-get-property bus systemd-dbus-service path
1187 systemd-dbus-interface-mount "LimitMEMLOCK"))
1188
1189 (defun systemd-mount-LimitMEMLOCKSoft (bus path)
1190 "Read only property."
1191 (dbus-get-property bus systemd-dbus-service path
1192 systemd-dbus-interface-mount "LimitMEMLOCKSoft"))
1193
1194 (defun systemd-mount-LimitLOCKS (bus path)
1195 "Read only property."
1196 (dbus-get-property bus systemd-dbus-service path
1197 systemd-dbus-interface-mount "LimitLOCKS"))
1198
1199 (defun systemd-mount-LimitLOCKSSoft (bus path)
1200 "Read only property."
1201 (dbus-get-property bus systemd-dbus-service path
1202 systemd-dbus-interface-mount "LimitLOCKSSoft"))
1203
1204 (defun systemd-mount-LimitSIGPENDING (bus path)
1205 "Read only property."
1206 (dbus-get-property bus systemd-dbus-service path
1207 systemd-dbus-interface-mount "LimitSIGPENDING"))
1208
1209 (defun systemd-mount-LimitSIGPENDINGSoft (bus path)
1210 "Read only property."
1211 (dbus-get-property bus systemd-dbus-service path
1212 systemd-dbus-interface-mount "LimitSIGPENDINGSoft"))
1213
1214 (defun systemd-mount-LimitMSGQUEUE (bus path)
1215 "Read only property."
1216 (dbus-get-property bus systemd-dbus-service path
1217 systemd-dbus-interface-mount "LimitMSGQUEUE"))
1218
1219 (defun systemd-mount-LimitMSGQUEUESoft (bus path)
1220 "Read only property."
1221 (dbus-get-property bus systemd-dbus-service path
1222 systemd-dbus-interface-mount "LimitMSGQUEUESoft"))
1223
1224 (defun systemd-mount-LimitNICE (bus path)
1225 "Read only property."
1226 (dbus-get-property bus systemd-dbus-service path
1227 systemd-dbus-interface-mount "LimitNICE"))
1228
1229 (defun systemd-mount-LimitNICESoft (bus path)
1230 "Read only property."
1231 (dbus-get-property bus systemd-dbus-service path
1232 systemd-dbus-interface-mount "LimitNICESoft"))
1233
1234 (defun systemd-mount-LimitRTPRIO (bus path)
1235 "Read only property."
1236 (dbus-get-property bus systemd-dbus-service path
1237 systemd-dbus-interface-mount "LimitRTPRIO"))
1238
1239 (defun systemd-mount-LimitRTPRIOSoft (bus path)
1240 "Read only property."
1241 (dbus-get-property bus systemd-dbus-service path
1242 systemd-dbus-interface-mount "LimitRTPRIOSoft"))
1243
1244 (defun systemd-mount-LimitRTTIME (bus path)
1245 "Read only property."
1246 (dbus-get-property bus systemd-dbus-service path
1247 systemd-dbus-interface-mount "LimitRTTIME"))
1248
1249 (defun systemd-mount-LimitRTTIMESoft (bus path)
1250 "Read only property."
1251 (dbus-get-property bus systemd-dbus-service path
1252 systemd-dbus-interface-mount "LimitRTTIMESoft"))
1253
1254 (defun systemd-mount-WorkingDirectory (bus path)
1255 "Read only property."
1256 (dbus-get-property bus systemd-dbus-service path
1257 systemd-dbus-interface-mount "WorkingDirectory"))
1258
1259 (defun systemd-mount-RootDirectory (bus path)
1260 "Read only property."
1261 (dbus-get-property bus systemd-dbus-service path
1262 systemd-dbus-interface-mount "RootDirectory"))
1263
1264 (defun systemd-mount-OOMScoreAdjust (bus path)
1265 "Read only property."
1266 (dbus-get-property bus systemd-dbus-service path
1267 systemd-dbus-interface-mount "OOMScoreAdjust"))
1268
1269 (defun systemd-mount-Nice (bus path)
1270 "Read only property."
1271 (dbus-get-property bus systemd-dbus-service path
1272 systemd-dbus-interface-mount "Nice"))
1273
1274 (defun systemd-mount-IOScheduling (bus path)
1275 "Read only property."
1276 (dbus-get-property bus systemd-dbus-service path
1277 systemd-dbus-interface-mount "IOScheduling"))
1278
1279 (defun systemd-mount-CPUSchedulingPolicy (bus path)
1280 "Read only property."
1281 (dbus-get-property bus systemd-dbus-service path
1282 systemd-dbus-interface-mount "CPUSchedulingPolicy"))
1283
1284 (defun systemd-mount-CPUSchedulingPriority (bus path)
1285 "Read only property."
1286 (dbus-get-property bus systemd-dbus-service path
1287 systemd-dbus-interface-mount "CPUSchedulingPriority"))
1288
1289 (defun systemd-mount-CPUAffinity (bus path)
1290 "Read only property."
1291 (dbus-get-property bus systemd-dbus-service path
1292 systemd-dbus-interface-mount "CPUAffinity"))
1293
1294 (defun systemd-mount-TimerSlackNSec (bus path)
1295 "Read only property."
1296 (dbus-get-property bus systemd-dbus-service path
1297 systemd-dbus-interface-mount "TimerSlackNSec"))
1298
1299 (defun systemd-mount-CPUSchedulingResetOnFork (bus path)
1300 "Read only property."
1301 (dbus-get-property bus systemd-dbus-service path
1302 systemd-dbus-interface-mount "CPUSchedulingResetOnFork"))
1303
1304 (defun systemd-mount-NonBlocking (bus path)
1305 "Read only property."
1306 (dbus-get-property bus systemd-dbus-service path
1307 systemd-dbus-interface-mount "NonBlocking"))
1308
1309 (defun systemd-mount-StandardInput (bus path)
1310 "Read only property."
1311 (dbus-get-property bus systemd-dbus-service path
1312 systemd-dbus-interface-mount "StandardInput"))
1313
1314 (defun systemd-mount-StandardOutput (bus path)
1315 "Read only property."
1316 (dbus-get-property bus systemd-dbus-service path
1317 systemd-dbus-interface-mount "StandardOutput"))
1318
1319 (defun systemd-mount-StandardError (bus path)
1320 "Read only property."
1321 (dbus-get-property bus systemd-dbus-service path
1322 systemd-dbus-interface-mount "StandardError"))
1323
1324 (defun systemd-mount-TTYPath (bus path)
1325 "Read only property."
1326 (dbus-get-property bus systemd-dbus-service path
1327 systemd-dbus-interface-mount "TTYPath"))
1328
1329 (defun systemd-mount-TTYReset (bus path)
1330 "Read only property."
1331 (dbus-get-property bus systemd-dbus-service path
1332 systemd-dbus-interface-mount "TTYReset"))
1333
1334 (defun systemd-mount-TTYVHangup (bus path)
1335 "Read only property."
1336 (dbus-get-property bus systemd-dbus-service path
1337 systemd-dbus-interface-mount "TTYVHangup"))
1338
1339 (defun systemd-mount-TTYVTDisallocate (bus path)
1340 "Read only property."
1341 (dbus-get-property bus systemd-dbus-service path
1342 systemd-dbus-interface-mount "TTYVTDisallocate"))
1343
1344 (defun systemd-mount-SyslogPriority (bus path)
1345 "Read only property."
1346 (dbus-get-property bus systemd-dbus-service path
1347 systemd-dbus-interface-mount "SyslogPriority"))
1348
1349 (defun systemd-mount-SyslogIdentifier (bus path)
1350 "Read only property."
1351 (dbus-get-property bus systemd-dbus-service path
1352 systemd-dbus-interface-mount "SyslogIdentifier"))
1353
1354 (defun systemd-mount-SyslogLevelPrefix (bus path)
1355 "Read only property."
1356 (dbus-get-property bus systemd-dbus-service path
1357 systemd-dbus-interface-mount "SyslogLevelPrefix"))
1358
1359 (defun systemd-mount-SyslogLevel (bus path)
1360 "Read only property."
1361 (dbus-get-property bus systemd-dbus-service path
1362 systemd-dbus-interface-mount "SyslogLevel"))
1363
1364 (defun systemd-mount-SyslogFacility (bus path)
1365 "Read only property."
1366 (dbus-get-property bus systemd-dbus-service path
1367 systemd-dbus-interface-mount "SyslogFacility"))
1368
1369 (defun systemd-mount-SecureBits (bus path)
1370 "Read only property."
1371 (dbus-get-property bus systemd-dbus-service path
1372 systemd-dbus-interface-mount "SecureBits"))
1373
1374 (defun systemd-mount-CapabilityBoundingSet (bus path)
1375 "Read only property."
1376 (dbus-get-property bus systemd-dbus-service path
1377 systemd-dbus-interface-mount "CapabilityBoundingSet"))
1378
1379 (defun systemd-mount-AmbientCapabilities (bus path)
1380 "Read only property."
1381 (dbus-get-property bus systemd-dbus-service path
1382 systemd-dbus-interface-mount "AmbientCapabilities"))
1383
1384 (defun systemd-mount-User (bus path)
1385 "Read only property."
1386 (dbus-get-property bus systemd-dbus-service path
1387 systemd-dbus-interface-mount "User"))
1388
1389 (defun systemd-mount-Group (bus path)
1390 "Read only property."
1391 (dbus-get-property bus systemd-dbus-service path
1392 systemd-dbus-interface-mount "Group"))
1393
1394 (defun systemd-mount-SupplementaryGroups (bus path)
1395 "Read only property."
1396 (dbus-get-property bus systemd-dbus-service path
1397 systemd-dbus-interface-mount "SupplementaryGroups"))
1398
1399 (defun systemd-mount-PAMName (bus path)
1400 "Read only property."
1401 (dbus-get-property bus systemd-dbus-service path
1402 systemd-dbus-interface-mount "PAMName"))
1403
1404 (defun systemd-mount-ReadWriteDirectories (bus path)
1405 "Read only property."
1406 (dbus-get-property bus systemd-dbus-service path
1407 systemd-dbus-interface-mount "ReadWriteDirectories"))
1408
1409 (defun systemd-mount-ReadOnlyDirectories (bus path)
1410 "Read only property."
1411 (dbus-get-property bus systemd-dbus-service path
1412 systemd-dbus-interface-mount "ReadOnlyDirectories"))
1413
1414 (defun systemd-mount-InaccessibleDirectories (bus path)
1415 "Read only property."
1416 (dbus-get-property bus systemd-dbus-service path
1417 systemd-dbus-interface-mount "InaccessibleDirectories"))
1418
1419 (defun systemd-mount-MountFlags (bus path)
1420 "Read only property."
1421 (dbus-get-property bus systemd-dbus-service path
1422 systemd-dbus-interface-mount "MountFlags"))
1423
1424 (defun systemd-mount-PrivateTmp (bus path)
1425 "Read only property."
1426 (dbus-get-property bus systemd-dbus-service path
1427 systemd-dbus-interface-mount "PrivateTmp"))
1428
1429 (defun systemd-mount-PrivateNetwork (bus path)
1430 "Read only property."
1431 (dbus-get-property bus systemd-dbus-service path
1432 systemd-dbus-interface-mount "PrivateNetwork"))
1433
1434 (defun systemd-mount-PrivateDevices (bus path)
1435 "Read only property."
1436 (dbus-get-property bus systemd-dbus-service path
1437 systemd-dbus-interface-mount "PrivateDevices"))
1438
1439 (defun systemd-mount-ProtectHome (bus path)
1440 "Read only property."
1441 (dbus-get-property bus systemd-dbus-service path
1442 systemd-dbus-interface-mount "ProtectHome"))
1443
1444 (defun systemd-mount-ProtectSystem (bus path)
1445 "Read only property."
1446 (dbus-get-property bus systemd-dbus-service path
1447 systemd-dbus-interface-mount "ProtectSystem"))
1448
1449 (defun systemd-mount-SameProcessGroup (bus path)
1450 "Read only property."
1451 (dbus-get-property bus systemd-dbus-service path
1452 systemd-dbus-interface-mount "SameProcessGroup"))
1453
1454 (defun systemd-mount-UtmpIdentifier (bus path)
1455 "Read only property."
1456 (dbus-get-property bus systemd-dbus-service path
1457 systemd-dbus-interface-mount "UtmpIdentifier"))
1458
1459 (defun systemd-mount-UtmpMode (bus path)
1460 "Read only property."
1461 (dbus-get-property bus systemd-dbus-service path
1462 systemd-dbus-interface-mount "UtmpMode"))
1463
1464 (defun systemd-mount-SELinuxContext (bus path)
1465 "Read only property."
1466 (dbus-get-property bus systemd-dbus-service path
1467 systemd-dbus-interface-mount "SELinuxContext"))
1468
1469 (defun systemd-mount-AppArmorProfile (bus path)
1470 "Read only property."
1471 (dbus-get-property bus systemd-dbus-service path
1472 systemd-dbus-interface-mount "AppArmorProfile"))
1473
1474 (defun systemd-mount-SmackProcessLabel (bus path)
1475 "Read only property."
1476 (dbus-get-property bus systemd-dbus-service path
1477 systemd-dbus-interface-mount "SmackProcessLabel"))
1478
1479 (defun systemd-mount-IgnoreSIGPIPE (bus path)
1480 "Read only property."
1481 (dbus-get-property bus systemd-dbus-service path
1482 systemd-dbus-interface-mount "IgnoreSIGPIPE"))
1483
1484 (defun systemd-mount-NoNewPrivileges (bus path)
1485 "Read only property."
1486 (dbus-get-property bus systemd-dbus-service path
1487 systemd-dbus-interface-mount "NoNewPrivileges"))
1488
1489 (defun systemd-mount-SystemCallFilter (bus path)
1490 "Read only property."
1491 (dbus-get-property bus systemd-dbus-service path
1492 systemd-dbus-interface-mount "SystemCallFilter"))
1493
1494 (defun systemd-mount-SystemCallArchitectures (bus path)
1495 "Read only property."
1496 (dbus-get-property bus systemd-dbus-service path
1497 systemd-dbus-interface-mount "SystemCallArchitectures"))
1498
1499 (defun systemd-mount-SystemCallErrorNumber (bus path)
1500 "Read only property."
1501 (dbus-get-property bus systemd-dbus-service path
1502 systemd-dbus-interface-mount "SystemCallErrorNumber"))
1503
1504 (defun systemd-mount-Personality (bus path)
1505 "Read only property."
1506 (dbus-get-property bus systemd-dbus-service path
1507 systemd-dbus-interface-mount "Personality"))
1508
1509 (defun systemd-mount-RestrictAddressFamilies (bus path)
1510 "Read only property."
1511 (dbus-get-property bus systemd-dbus-service path
1512 systemd-dbus-interface-mount "RestrictAddressFamilies"))
1513
1514 (defun systemd-mount-RuntimeDirectoryMode (bus path)
1515 "Read only property."
1516 (dbus-get-property bus systemd-dbus-service path
1517 systemd-dbus-interface-mount "RuntimeDirectoryMode"))
1518
1519 (defun systemd-mount-RuntimeDirectory (bus path)
1520 "Read only property."
1521 (dbus-get-property bus systemd-dbus-service path
1522 systemd-dbus-interface-mount "RuntimeDirectory"))
1523
1524 (defun systemd-mount-KillMode (bus path)
1525 "Read only property."
1526 (dbus-get-property bus systemd-dbus-service path
1527 systemd-dbus-interface-mount "KillMode"))
1528
1529 (defun systemd-mount-KillSignal (bus path)
1530 "Read only property."
1531 (dbus-get-property bus systemd-dbus-service path
1532 systemd-dbus-interface-mount "KillSignal"))
1533
1534 (defun systemd-mount-SendSIGKILL (bus path)
1535 "Read only property."
1536 (dbus-get-property bus systemd-dbus-service path
1537 systemd-dbus-interface-mount "SendSIGKILL"))
1538
1539 (defun systemd-mount-SendSIGHUP (bus path)
1540 "Read only property."
1541 (dbus-get-property bus systemd-dbus-service path
1542 systemd-dbus-interface-mount "SendSIGHUP"))
1543
1544 ;;; org.freedesktop.systemd1.Path
1545
1546 (defconst systemd-dbus-interface-path "org.freedesktop.systemd1.Path")
1547
1548 (defun systemd-path-Unit (bus path)
1549 "Read only property."
1550 (dbus-get-property bus systemd-dbus-service path
1551 systemd-dbus-interface-path "Unit"))
1552
1553 (defun systemd-path-Paths (bus path)
1554 "Read only property."
1555 (dbus-get-property bus systemd-dbus-service path
1556 systemd-dbus-interface-path "Paths"))
1557
1558 (defun systemd-path-MakeDirectory (bus path)
1559 "Read only property."
1560 (dbus-get-property bus systemd-dbus-service path
1561 systemd-dbus-interface-path "MakeDirectory"))
1562
1563 (defun systemd-path-DirectoryMode (bus path)
1564 "Read only property."
1565 (dbus-get-property bus systemd-dbus-service path
1566 systemd-dbus-interface-path "DirectoryMode"))
1567
1568 (defun systemd-path-Result (bus path)
1569 "Read only property."
1570 (dbus-get-property bus systemd-dbus-service path
1571 systemd-dbus-interface-path "Result"))
1572
1573 ;;; org.freedesktop.systemd1.Scope
1574
1575 (defconst systemd-dbus-interface-scope "org.freedesktop.systemd1.Scope")
1576
1577 (defun systemd-scope-Controller (bus path)
1578 "Read only property."
1579 (dbus-get-property bus systemd-dbus-service path
1580 systemd-dbus-interface-scope "Controller"))
1581
1582 (defun systemd-scope-TimeoutStopUSec (bus path)
1583 "Read only property."
1584 (dbus-get-property bus systemd-dbus-service path
1585 systemd-dbus-interface-scope "TimeoutStopUSec"))
1586
1587 (defun systemd-scope-Result (bus path)
1588 "Read only property."
1589 (dbus-get-property bus systemd-dbus-service path
1590 systemd-dbus-interface-scope "Result"))
1591
1592 (defun systemd-scope-Abandon (bus path)
1593 (dbus-call-method bus systemd-dbus-service path
1594 systemd-dbus-interface-scope "Abandon"))
1595
1596 (defun systemd-scope-Slice (bus path)
1597 "Read only property."
1598 (dbus-get-property bus systemd-dbus-service path
1599 systemd-dbus-interface-scope "Slice"))
1600
1601 (defun systemd-scope-ControlGroup (bus path)
1602 "Read only property."
1603 (dbus-get-property bus systemd-dbus-service path
1604 systemd-dbus-interface-scope "ControlGroup"))
1605
1606 (defun systemd-scope-MemoryCurrent (bus path)
1607 "Read only property."
1608 (dbus-get-property bus systemd-dbus-service path
1609 systemd-dbus-interface-scope "MemoryCurrent"))
1610
1611 (defun systemd-scope-CPUUsageNSec (bus path)
1612 "Read only property."
1613 (dbus-get-property bus systemd-dbus-service path
1614 systemd-dbus-interface-scope "CPUUsageNSec"))
1615
1616 (defun systemd-scope-TasksCurrent (bus path)
1617 "Read only property."
1618 (dbus-get-property bus systemd-dbus-service path
1619 systemd-dbus-interface-scope "TasksCurrent"))
1620
1621 (defun systemd-scope-GetProcesses (bus path)
1622 (dbus-call-method bus systemd-dbus-service path
1623 systemd-dbus-interface-scope "GetProcesses"))
1624
1625 (defun systemd-scope-Delegate (bus path)
1626 "Read only property."
1627 (dbus-get-property bus systemd-dbus-service path
1628 systemd-dbus-interface-scope "Delegate"))
1629
1630 (defun systemd-scope-CPUAccounting (bus path)
1631 "Read only property."
1632 (dbus-get-property bus systemd-dbus-service path
1633 systemd-dbus-interface-scope "CPUAccounting"))
1634
1635 (defun systemd-scope-CPUShares (bus path)
1636 "Read only property."
1637 (dbus-get-property bus systemd-dbus-service path
1638 systemd-dbus-interface-scope "CPUShares"))
1639
1640 (defun systemd-scope-StartupCPUShares (bus path)
1641 "Read only property."
1642 (dbus-get-property bus systemd-dbus-service path
1643 systemd-dbus-interface-scope "StartupCPUShares"))
1644
1645 (defun systemd-scope-CPUQuotaPerSecUSec (bus path)
1646 "Read only property."
1647 (dbus-get-property bus systemd-dbus-service path
1648 systemd-dbus-interface-scope "CPUQuotaPerSecUSec"))
1649
1650 (defun systemd-scope-IOAccounting (bus path)
1651 "Read only property."
1652 (dbus-get-property bus systemd-dbus-service path
1653 systemd-dbus-interface-scope "IOAccounting"))
1654
1655 (defun systemd-scope-IOWeight (bus path)
1656 "Read only property."
1657 (dbus-get-property bus systemd-dbus-service path
1658 systemd-dbus-interface-scope "IOWeight"))
1659
1660 (defun systemd-scope-StartupIOWeight (bus path)
1661 "Read only property."
1662 (dbus-get-property bus systemd-dbus-service path
1663 systemd-dbus-interface-scope "StartupIOWeight"))
1664
1665 (defun systemd-scope-IODeviceWeight (bus path)
1666 "Read only property."
1667 (dbus-get-property bus systemd-dbus-service path
1668 systemd-dbus-interface-scope "IODeviceWeight"))
1669
1670 (defun systemd-scope-IOReadBandwidthMax (bus path)
1671 "Read only property."
1672 (dbus-get-property bus systemd-dbus-service path
1673 systemd-dbus-interface-scope "IOReadBandwidthMax"))
1674
1675 (defun systemd-scope-IOWriteBandwidthMax (bus path)
1676 "Read only property."
1677 (dbus-get-property bus systemd-dbus-service path
1678 systemd-dbus-interface-scope "IOWriteBandwidthMax"))
1679
1680 (defun systemd-scope-IOReadIOPSMax (bus path)
1681 "Read only property."
1682 (dbus-get-property bus systemd-dbus-service path
1683 systemd-dbus-interface-scope "IOReadIOPSMax"))
1684
1685 (defun systemd-scope-IOWriteIOPSMax (bus path)
1686 "Read only property."
1687 (dbus-get-property bus systemd-dbus-service path
1688 systemd-dbus-interface-scope "IOWriteIOPSMax"))
1689
1690 (defun systemd-scope-BlockIOAccounting (bus path)
1691 "Read only property."
1692 (dbus-get-property bus systemd-dbus-service path
1693 systemd-dbus-interface-scope "BlockIOAccounting"))
1694
1695 (defun systemd-scope-BlockIOWeight (bus path)
1696 "Read only property."
1697 (dbus-get-property bus systemd-dbus-service path
1698 systemd-dbus-interface-scope "BlockIOWeight"))
1699
1700 (defun systemd-scope-StartupBlockIOWeight (bus path)
1701 "Read only property."
1702 (dbus-get-property bus systemd-dbus-service path
1703 systemd-dbus-interface-scope "StartupBlockIOWeight"))
1704
1705 (defun systemd-scope-BlockIODeviceWeight (bus path)
1706 "Read only property."
1707 (dbus-get-property bus systemd-dbus-service path
1708 systemd-dbus-interface-scope "BlockIODeviceWeight"))
1709
1710 (defun systemd-scope-BlockIOReadBandwidth (bus path)
1711 "Read only property."
1712 (dbus-get-property bus systemd-dbus-service path
1713 systemd-dbus-interface-scope "BlockIOReadBandwidth"))
1714
1715 (defun systemd-scope-BlockIOWriteBandwidth (bus path)
1716 "Read only property."
1717 (dbus-get-property bus systemd-dbus-service path
1718 systemd-dbus-interface-scope "BlockIOWriteBandwidth"))
1719
1720 (defun systemd-scope-MemoryAccounting (bus path)
1721 "Read only property."
1722 (dbus-get-property bus systemd-dbus-service path
1723 systemd-dbus-interface-scope "MemoryAccounting"))
1724
1725 (defun systemd-scope-MemoryLimit (bus path)
1726 "Read only property."
1727 (dbus-get-property bus systemd-dbus-service path
1728 systemd-dbus-interface-scope "MemoryLimit"))
1729
1730 (defun systemd-scope-DevicePolicy (bus path)
1731 "Read only property."
1732 (dbus-get-property bus systemd-dbus-service path
1733 systemd-dbus-interface-scope "DevicePolicy"))
1734
1735 (defun systemd-scope-DeviceAllow (bus path)
1736 "Read only property."
1737 (dbus-get-property bus systemd-dbus-service path
1738 systemd-dbus-interface-scope "DeviceAllow"))
1739
1740 (defun systemd-scope-TasksAccounting (bus path)
1741 "Read only property."
1742 (dbus-get-property bus systemd-dbus-service path
1743 systemd-dbus-interface-scope "TasksAccounting"))
1744
1745 (defun systemd-scope-TasksMax (bus path)
1746 "Read only property."
1747 (dbus-get-property bus systemd-dbus-service path
1748 systemd-dbus-interface-scope "TasksMax"))
1749
1750 (defun systemd-scope-KillMode (bus path)
1751 "Read only property."
1752 (dbus-get-property bus systemd-dbus-service path
1753 systemd-dbus-interface-scope "KillMode"))
1754
1755 (defun systemd-scope-KillSignal (bus path)
1756 "Read only property."
1757 (dbus-get-property bus systemd-dbus-service path
1758 systemd-dbus-interface-scope "KillSignal"))
1759
1760 (defun systemd-scope-SendSIGKILL (bus path)
1761 "Read only property."
1762 (dbus-get-property bus systemd-dbus-service path
1763 systemd-dbus-interface-scope "SendSIGKILL"))
1764
1765 (defun systemd-scope-SendSIGHUP (bus path)
1766 "Read only property."
1767 (dbus-get-property bus systemd-dbus-service path
1768 systemd-dbus-interface-scope "SendSIGHUP"))
1769
1770 ;;; org.freedesktop.systemd1.Service
1771
1772 (defconst systemd-dbus-interface-service "org.freedesktop.systemd1.Service")
1773
1774 (defun systemd-service-Type (bus path)
1775 "Read only property."
1776 (dbus-get-property bus systemd-dbus-service path
1777 systemd-dbus-interface-service "Type"))
1778
1779 (defun systemd-service-Restart (bus path)
1780 "Read only property."
1781 (dbus-get-property bus systemd-dbus-service path
1782 systemd-dbus-interface-service "Restart"))
1783
1784 (defun systemd-service-PIDFile (bus path)
1785 "Read only property."
1786 (dbus-get-property bus systemd-dbus-service path
1787 systemd-dbus-interface-service "PIDFile"))
1788
1789 (defun systemd-service-NotifyAccess (bus path)
1790 "Read only property."
1791 (dbus-get-property bus systemd-dbus-service path
1792 systemd-dbus-interface-service "NotifyAccess"))
1793
1794 (defun systemd-service-RestartUSec (bus path)
1795 "Read only property."
1796 (dbus-get-property bus systemd-dbus-service path
1797 systemd-dbus-interface-service "RestartUSec"))
1798
1799 (defun systemd-service-TimeoutStartUSec (bus path)
1800 "Read only property."
1801 (dbus-get-property bus systemd-dbus-service path
1802 systemd-dbus-interface-service "TimeoutStartUSec"))
1803
1804 (defun systemd-service-TimeoutStopUSec (bus path)
1805 "Read only property."
1806 (dbus-get-property bus systemd-dbus-service path
1807 systemd-dbus-interface-service "TimeoutStopUSec"))
1808
1809 (defun systemd-service-RuntimeMaxUSec (bus path)
1810 "Read only property."
1811 (dbus-get-property bus systemd-dbus-service path
1812 systemd-dbus-interface-service "RuntimeMaxUSec"))
1813
1814 (defun systemd-service-WatchdogUSec (bus path)
1815 "Read only property."
1816 (dbus-get-property bus systemd-dbus-service path
1817 systemd-dbus-interface-service "WatchdogUSec"))
1818
1819 (defun systemd-service-WatchdogTimestamp (bus path)
1820 "Read only property."
1821 (dbus-get-property bus systemd-dbus-service path
1822 systemd-dbus-interface-service "WatchdogTimestamp"))
1823
1824 (defun systemd-service-WatchdogTimestampMonotonic (bus path)
1825 "Read only property."
1826 (dbus-get-property bus systemd-dbus-service path
1827 systemd-dbus-interface-service "WatchdogTimestampMonotonic"))
1828
1829 (defun systemd-service-FailureAction (bus path)
1830 "Read only property."
1831 (dbus-get-property bus systemd-dbus-service path
1832 systemd-dbus-interface-service "FailureAction"))
1833
1834 (defun systemd-service-PermissionsStartOnly (bus path)
1835 "Read only property."
1836 (dbus-get-property bus systemd-dbus-service path
1837 systemd-dbus-interface-service "PermissionsStartOnly"))
1838
1839 (defun systemd-service-RootDirectoryStartOnly (bus path)
1840 "Read only property."
1841 (dbus-get-property bus systemd-dbus-service path
1842 systemd-dbus-interface-service "RootDirectoryStartOnly"))
1843
1844 (defun systemd-service-RemainAfterExit (bus path)
1845 "Read only property."
1846 (dbus-get-property bus systemd-dbus-service path
1847 systemd-dbus-interface-service "RemainAfterExit"))
1848
1849 (defun systemd-service-GuessMainPID (bus path)
1850 "Read only property."
1851 (dbus-get-property bus systemd-dbus-service path
1852 systemd-dbus-interface-service "GuessMainPID"))
1853
1854 (defun systemd-service-MainPID (bus path)
1855 "Read only property."
1856 (dbus-get-property bus systemd-dbus-service path
1857 systemd-dbus-interface-service "MainPID"))
1858
1859 (defun systemd-service-ControlPID (bus path)
1860 "Read only property."
1861 (dbus-get-property bus systemd-dbus-service path
1862 systemd-dbus-interface-service "ControlPID"))
1863
1864 (defun systemd-service-BusName (bus path)
1865 "Read only property."
1866 (dbus-get-property bus systemd-dbus-service path
1867 systemd-dbus-interface-service "BusName"))
1868
1869 (defun systemd-service-FileDescriptorStoreMax (bus path)
1870 "Read only property."
1871 (dbus-get-property bus systemd-dbus-service path
1872 systemd-dbus-interface-service "FileDescriptorStoreMax"))
1873
1874 (defun systemd-service-NFileDescriptorStore (bus path)
1875 "Read only property."
1876 (dbus-get-property bus systemd-dbus-service path
1877 systemd-dbus-interface-service "NFileDescriptorStore"))
1878
1879 (defun systemd-service-StatusText (bus path)
1880 "Read only property."
1881 (dbus-get-property bus systemd-dbus-service path
1882 systemd-dbus-interface-service "StatusText"))
1883
1884 (defun systemd-service-StatusErrno (bus path)
1885 "Read only property."
1886 (dbus-get-property bus systemd-dbus-service path
1887 systemd-dbus-interface-service "StatusErrno"))
1888
1889 (defun systemd-service-Result (bus path)
1890 "Read only property."
1891 (dbus-get-property bus systemd-dbus-service path
1892 systemd-dbus-interface-service "Result"))
1893
1894 (defun systemd-service-USBFunctionDescriptors (bus path)
1895 "Read only property."
1896 (dbus-get-property bus systemd-dbus-service path
1897 systemd-dbus-interface-service "USBFunctionDescriptors"))
1898
1899 (defun systemd-service-USBFunctionStrings (bus path)
1900 "Read only property."
1901 (dbus-get-property bus systemd-dbus-service path
1902 systemd-dbus-interface-service "USBFunctionStrings"))
1903
1904 (defun systemd-service-ExecMainStartTimestamp (bus path)
1905 "Read only property."
1906 (dbus-get-property bus systemd-dbus-service path
1907 systemd-dbus-interface-service "ExecMainStartTimestamp"))
1908
1909 (defun systemd-service-ExecMainStartTimestampMonotonic (bus path)
1910 "Read only property."
1911 (dbus-get-property bus systemd-dbus-service path
1912 systemd-dbus-interface-service "ExecMainStartTimestampMonotonic"))
1913
1914 (defun systemd-service-ExecMainExitTimestamp (bus path)
1915 "Read only property."
1916 (dbus-get-property bus systemd-dbus-service path
1917 systemd-dbus-interface-service "ExecMainExitTimestamp"))
1918
1919 (defun systemd-service-ExecMainExitTimestampMonotonic (bus path)
1920 "Read only property."
1921 (dbus-get-property bus systemd-dbus-service path
1922 systemd-dbus-interface-service "ExecMainExitTimestampMonotonic"))
1923
1924 (defun systemd-service-ExecMainPID (bus path)
1925 "Read only property."
1926 (dbus-get-property bus systemd-dbus-service path
1927 systemd-dbus-interface-service "ExecMainPID"))
1928
1929 (defun systemd-service-ExecMainCode (bus path)
1930 "Read only property."
1931 (dbus-get-property bus systemd-dbus-service path
1932 systemd-dbus-interface-service "ExecMainCode"))
1933
1934 (defun systemd-service-ExecMainStatus (bus path)
1935 "Read only property."
1936 (dbus-get-property bus systemd-dbus-service path
1937 systemd-dbus-interface-service "ExecMainStatus"))
1938
1939 (defun systemd-service-ExecStartPre (bus path)
1940 "Read only property."
1941 (dbus-get-property bus systemd-dbus-service path
1942 systemd-dbus-interface-service "ExecStartPre"))
1943
1944 (defun systemd-service-ExecStart (bus path)
1945 "Read only property."
1946 (dbus-get-property bus systemd-dbus-service path
1947 systemd-dbus-interface-service "ExecStart"))
1948
1949 (defun systemd-service-ExecStartPost (bus path)
1950 "Read only property."
1951 (dbus-get-property bus systemd-dbus-service path
1952 systemd-dbus-interface-service "ExecStartPost"))
1953
1954 (defun systemd-service-ExecReload (bus path)
1955 "Read only property."
1956 (dbus-get-property bus systemd-dbus-service path
1957 systemd-dbus-interface-service "ExecReload"))
1958
1959 (defun systemd-service-ExecStop (bus path)
1960 "Read only property."
1961 (dbus-get-property bus systemd-dbus-service path
1962 systemd-dbus-interface-service "ExecStop"))
1963
1964 (defun systemd-service-ExecStopPost (bus path)
1965 "Read only property."
1966 (dbus-get-property bus systemd-dbus-service path
1967 systemd-dbus-interface-service "ExecStopPost"))
1968
1969 (defun systemd-service-Slice (bus path)
1970 "Read only property."
1971 (dbus-get-property bus systemd-dbus-service path
1972 systemd-dbus-interface-service "Slice"))
1973
1974 (defun systemd-service-ControlGroup (bus path)
1975 "Read only property."
1976 (dbus-get-property bus systemd-dbus-service path
1977 systemd-dbus-interface-service "ControlGroup"))
1978
1979 (defun systemd-service-MemoryCurrent (bus path)
1980 "Read only property."
1981 (dbus-get-property bus systemd-dbus-service path
1982 systemd-dbus-interface-service "MemoryCurrent"))
1983
1984 (defun systemd-service-CPUUsageNSec (bus path)
1985 "Read only property."
1986 (dbus-get-property bus systemd-dbus-service path
1987 systemd-dbus-interface-service "CPUUsageNSec"))
1988
1989 (defun systemd-service-TasksCurrent (bus path)
1990 "Read only property."
1991 (dbus-get-property bus systemd-dbus-service path
1992 systemd-dbus-interface-service "TasksCurrent"))
1993
1994 (defun systemd-service-GetProcesses (bus path)
1995 (dbus-call-method bus systemd-dbus-service path
1996 systemd-dbus-interface-service "GetProcesses"))
1997
1998 (defun systemd-service-Delegate (bus path)
1999 "Read only property."
2000 (dbus-get-property bus systemd-dbus-service path
2001 systemd-dbus-interface-service "Delegate"))
2002
2003 (defun systemd-service-CPUAccounting (bus path)
2004 "Read only property."
2005 (dbus-get-property bus systemd-dbus-service path
2006 systemd-dbus-interface-service "CPUAccounting"))
2007
2008 (defun systemd-service-CPUShares (bus path)
2009 "Read only property."
2010 (dbus-get-property bus systemd-dbus-service path
2011 systemd-dbus-interface-service "CPUShares"))
2012
2013 (defun systemd-service-StartupCPUShares (bus path)
2014 "Read only property."
2015 (dbus-get-property bus systemd-dbus-service path
2016 systemd-dbus-interface-service "StartupCPUShares"))
2017
2018 (defun systemd-service-CPUQuotaPerSecUSec (bus path)
2019 "Read only property."
2020 (dbus-get-property bus systemd-dbus-service path
2021 systemd-dbus-interface-service "CPUQuotaPerSecUSec"))
2022
2023 (defun systemd-service-IOAccounting (bus path)
2024 "Read only property."
2025 (dbus-get-property bus systemd-dbus-service path
2026 systemd-dbus-interface-service "IOAccounting"))
2027
2028 (defun systemd-service-IOWeight (bus path)
2029 "Read only property."
2030 (dbus-get-property bus systemd-dbus-service path
2031 systemd-dbus-interface-service "IOWeight"))
2032
2033 (defun systemd-service-StartupIOWeight (bus path)
2034 "Read only property."
2035 (dbus-get-property bus systemd-dbus-service path
2036 systemd-dbus-interface-service "StartupIOWeight"))
2037
2038 (defun systemd-service-IODeviceWeight (bus path)
2039 "Read only property."
2040 (dbus-get-property bus systemd-dbus-service path
2041 systemd-dbus-interface-service "IODeviceWeight"))
2042
2043 (defun systemd-service-IOReadBandwidthMax (bus path)
2044 "Read only property."
2045 (dbus-get-property bus systemd-dbus-service path
2046 systemd-dbus-interface-service "IOReadBandwidthMax"))
2047
2048 (defun systemd-service-IOWriteBandwidthMax (bus path)
2049 "Read only property."
2050 (dbus-get-property bus systemd-dbus-service path
2051 systemd-dbus-interface-service "IOWriteBandwidthMax"))
2052
2053 (defun systemd-service-IOReadIOPSMax (bus path)
2054 "Read only property."
2055 (dbus-get-property bus systemd-dbus-service path
2056 systemd-dbus-interface-service "IOReadIOPSMax"))
2057
2058 (defun systemd-service-IOWriteIOPSMax (bus path)
2059 "Read only property."
2060 (dbus-get-property bus systemd-dbus-service path
2061 systemd-dbus-interface-service "IOWriteIOPSMax"))
2062
2063 (defun systemd-service-BlockIOAccounting (bus path)
2064 "Read only property."
2065 (dbus-get-property bus systemd-dbus-service path
2066 systemd-dbus-interface-service "BlockIOAccounting"))
2067
2068 (defun systemd-service-BlockIOWeight (bus path)
2069 "Read only property."
2070 (dbus-get-property bus systemd-dbus-service path
2071 systemd-dbus-interface-service "BlockIOWeight"))
2072
2073 (defun systemd-service-StartupBlockIOWeight (bus path)
2074 "Read only property."
2075 (dbus-get-property bus systemd-dbus-service path
2076 systemd-dbus-interface-service "StartupBlockIOWeight"))
2077
2078 (defun systemd-service-BlockIODeviceWeight (bus path)
2079 "Read only property."
2080 (dbus-get-property bus systemd-dbus-service path
2081 systemd-dbus-interface-service "BlockIODeviceWeight"))
2082
2083 (defun systemd-service-BlockIOReadBandwidth (bus path)
2084 "Read only property."
2085 (dbus-get-property bus systemd-dbus-service path
2086 systemd-dbus-interface-service "BlockIOReadBandwidth"))
2087
2088 (defun systemd-service-BlockIOWriteBandwidth (bus path)
2089 "Read only property."
2090 (dbus-get-property bus systemd-dbus-service path
2091 systemd-dbus-interface-service "BlockIOWriteBandwidth"))
2092
2093 (defun systemd-service-MemoryAccounting (bus path)
2094 "Read only property."
2095 (dbus-get-property bus systemd-dbus-service path
2096 systemd-dbus-interface-service "MemoryAccounting"))
2097
2098 (defun systemd-service-MemoryLimit (bus path)
2099 "Read only property."
2100 (dbus-get-property bus systemd-dbus-service path
2101 systemd-dbus-interface-service "MemoryLimit"))
2102
2103 (defun systemd-service-DevicePolicy (bus path)
2104 "Read only property."
2105 (dbus-get-property bus systemd-dbus-service path
2106 systemd-dbus-interface-service "DevicePolicy"))
2107
2108 (defun systemd-service-DeviceAllow (bus path)
2109 "Read only property."
2110 (dbus-get-property bus systemd-dbus-service path
2111 systemd-dbus-interface-service "DeviceAllow"))
2112
2113 (defun systemd-service-TasksAccounting (bus path)
2114 "Read only property."
2115 (dbus-get-property bus systemd-dbus-service path
2116 systemd-dbus-interface-service "TasksAccounting"))
2117
2118 (defun systemd-service-TasksMax (bus path)
2119 "Read only property."
2120 (dbus-get-property bus systemd-dbus-service path
2121 systemd-dbus-interface-service "TasksMax"))
2122
2123 (defun systemd-service-Environment (bus path)
2124 "Read only property."
2125 (dbus-get-property bus systemd-dbus-service path
2126 systemd-dbus-interface-service "Environment"))
2127
2128 (defun systemd-service-EnvironmentFiles (bus path)
2129 "Read only property."
2130 (dbus-get-property bus systemd-dbus-service path
2131 systemd-dbus-interface-service "EnvironmentFiles"))
2132
2133 (defun systemd-service-PassEnvironment (bus path)
2134 "Read only property."
2135 (dbus-get-property bus systemd-dbus-service path
2136 systemd-dbus-interface-service "PassEnvironment"))
2137
2138 (defun systemd-service-UMask (bus path)
2139 "Read only property."
2140 (dbus-get-property bus systemd-dbus-service path
2141 systemd-dbus-interface-service "UMask"))
2142
2143 (defun systemd-service-LimitCPU (bus path)
2144 "Read only property."
2145 (dbus-get-property bus systemd-dbus-service path
2146 systemd-dbus-interface-service "LimitCPU"))
2147
2148 (defun systemd-service-LimitCPUSoft (bus path)
2149 "Read only property."
2150 (dbus-get-property bus systemd-dbus-service path
2151 systemd-dbus-interface-service "LimitCPUSoft"))
2152
2153 (defun systemd-service-LimitFSIZE (bus path)
2154 "Read only property."
2155 (dbus-get-property bus systemd-dbus-service path
2156 systemd-dbus-interface-service "LimitFSIZE"))
2157
2158 (defun systemd-service-LimitFSIZESoft (bus path)
2159 "Read only property."
2160 (dbus-get-property bus systemd-dbus-service path
2161 systemd-dbus-interface-service "LimitFSIZESoft"))
2162
2163 (defun systemd-service-LimitDATA (bus path)
2164 "Read only property."
2165 (dbus-get-property bus systemd-dbus-service path
2166 systemd-dbus-interface-service "LimitDATA"))
2167
2168 (defun systemd-service-LimitDATASoft (bus path)
2169 "Read only property."
2170 (dbus-get-property bus systemd-dbus-service path
2171 systemd-dbus-interface-service "LimitDATASoft"))
2172
2173 (defun systemd-service-LimitSTACK (bus path)
2174 "Read only property."
2175 (dbus-get-property bus systemd-dbus-service path
2176 systemd-dbus-interface-service "LimitSTACK"))
2177
2178 (defun systemd-service-LimitSTACKSoft (bus path)
2179 "Read only property."
2180 (dbus-get-property bus systemd-dbus-service path
2181 systemd-dbus-interface-service "LimitSTACKSoft"))
2182
2183 (defun systemd-service-LimitCORE (bus path)
2184 "Read only property."
2185 (dbus-get-property bus systemd-dbus-service path
2186 systemd-dbus-interface-service "LimitCORE"))
2187
2188 (defun systemd-service-LimitCORESoft (bus path)
2189 "Read only property."
2190 (dbus-get-property bus systemd-dbus-service path
2191 systemd-dbus-interface-service "LimitCORESoft"))
2192
2193 (defun systemd-service-LimitRSS (bus path)
2194 "Read only property."
2195 (dbus-get-property bus systemd-dbus-service path
2196 systemd-dbus-interface-service "LimitRSS"))
2197
2198 (defun systemd-service-LimitRSSSoft (bus path)
2199 "Read only property."
2200 (dbus-get-property bus systemd-dbus-service path
2201 systemd-dbus-interface-service "LimitRSSSoft"))
2202
2203 (defun systemd-service-LimitNOFILE (bus path)
2204 "Read only property."
2205 (dbus-get-property bus systemd-dbus-service path
2206 systemd-dbus-interface-service "LimitNOFILE"))
2207
2208 (defun systemd-service-LimitNOFILESoft (bus path)
2209 "Read only property."
2210 (dbus-get-property bus systemd-dbus-service path
2211 systemd-dbus-interface-service "LimitNOFILESoft"))
2212
2213 (defun systemd-service-LimitAS (bus path)
2214 "Read only property."
2215 (dbus-get-property bus systemd-dbus-service path
2216 systemd-dbus-interface-service "LimitAS"))
2217
2218 (defun systemd-service-LimitASSoft (bus path)
2219 "Read only property."
2220 (dbus-get-property bus systemd-dbus-service path
2221 systemd-dbus-interface-service "LimitASSoft"))
2222
2223 (defun systemd-service-LimitNPROC (bus path)
2224 "Read only property."
2225 (dbus-get-property bus systemd-dbus-service path
2226 systemd-dbus-interface-service "LimitNPROC"))
2227
2228 (defun systemd-service-LimitNPROCSoft (bus path)
2229 "Read only property."
2230 (dbus-get-property bus systemd-dbus-service path
2231 systemd-dbus-interface-service "LimitNPROCSoft"))
2232
2233 (defun systemd-service-LimitMEMLOCK (bus path)
2234 "Read only property."
2235 (dbus-get-property bus systemd-dbus-service path
2236 systemd-dbus-interface-service "LimitMEMLOCK"))
2237
2238 (defun systemd-service-LimitMEMLOCKSoft (bus path)
2239 "Read only property."
2240 (dbus-get-property bus systemd-dbus-service path
2241 systemd-dbus-interface-service "LimitMEMLOCKSoft"))
2242
2243 (defun systemd-service-LimitLOCKS (bus path)
2244 "Read only property."
2245 (dbus-get-property bus systemd-dbus-service path
2246 systemd-dbus-interface-service "LimitLOCKS"))
2247
2248 (defun systemd-service-LimitLOCKSSoft (bus path)
2249 "Read only property."
2250 (dbus-get-property bus systemd-dbus-service path
2251 systemd-dbus-interface-service "LimitLOCKSSoft"))
2252
2253 (defun systemd-service-LimitSIGPENDING (bus path)
2254 "Read only property."
2255 (dbus-get-property bus systemd-dbus-service path
2256 systemd-dbus-interface-service "LimitSIGPENDING"))
2257
2258 (defun systemd-service-LimitSIGPENDINGSoft (bus path)
2259 "Read only property."
2260 (dbus-get-property bus systemd-dbus-service path
2261 systemd-dbus-interface-service "LimitSIGPENDINGSoft"))
2262
2263 (defun systemd-service-LimitMSGQUEUE (bus path)
2264 "Read only property."
2265 (dbus-get-property bus systemd-dbus-service path
2266 systemd-dbus-interface-service "LimitMSGQUEUE"))
2267
2268 (defun systemd-service-LimitMSGQUEUESoft (bus path)
2269 "Read only property."
2270 (dbus-get-property bus systemd-dbus-service path
2271 systemd-dbus-interface-service "LimitMSGQUEUESoft"))
2272
2273 (defun systemd-service-LimitNICE (bus path)
2274 "Read only property."
2275 (dbus-get-property bus systemd-dbus-service path
2276 systemd-dbus-interface-service "LimitNICE"))
2277
2278 (defun systemd-service-LimitNICESoft (bus path)
2279 "Read only property."
2280 (dbus-get-property bus systemd-dbus-service path
2281 systemd-dbus-interface-service "LimitNICESoft"))
2282
2283 (defun systemd-service-LimitRTPRIO (bus path)
2284 "Read only property."
2285 (dbus-get-property bus systemd-dbus-service path
2286 systemd-dbus-interface-service "LimitRTPRIO"))
2287
2288 (defun systemd-service-LimitRTPRIOSoft (bus path)
2289 "Read only property."
2290 (dbus-get-property bus systemd-dbus-service path
2291 systemd-dbus-interface-service "LimitRTPRIOSoft"))
2292
2293 (defun systemd-service-LimitRTTIME (bus path)
2294 "Read only property."
2295 (dbus-get-property bus systemd-dbus-service path
2296 systemd-dbus-interface-service "LimitRTTIME"))
2297
2298 (defun systemd-service-LimitRTTIMESoft (bus path)
2299 "Read only property."
2300 (dbus-get-property bus systemd-dbus-service path
2301 systemd-dbus-interface-service "LimitRTTIMESoft"))
2302
2303 (defun systemd-service-WorkingDirectory (bus path)
2304 "Read only property."
2305 (dbus-get-property bus systemd-dbus-service path
2306 systemd-dbus-interface-service "WorkingDirectory"))
2307
2308 (defun systemd-service-RootDirectory (bus path)
2309 "Read only property."
2310 (dbus-get-property bus systemd-dbus-service path
2311 systemd-dbus-interface-service "RootDirectory"))
2312
2313 (defun systemd-service-OOMScoreAdjust (bus path)
2314 "Read only property."
2315 (dbus-get-property bus systemd-dbus-service path
2316 systemd-dbus-interface-service "OOMScoreAdjust"))
2317
2318 (defun systemd-service-Nice (bus path)
2319 "Read only property."
2320 (dbus-get-property bus systemd-dbus-service path
2321 systemd-dbus-interface-service "Nice"))
2322
2323 (defun systemd-service-IOScheduling (bus path)
2324 "Read only property."
2325 (dbus-get-property bus systemd-dbus-service path
2326 systemd-dbus-interface-service "IOScheduling"))
2327
2328 (defun systemd-service-CPUSchedulingPolicy (bus path)
2329 "Read only property."
2330 (dbus-get-property bus systemd-dbus-service path
2331 systemd-dbus-interface-service "CPUSchedulingPolicy"))
2332
2333 (defun systemd-service-CPUSchedulingPriority (bus path)
2334 "Read only property."
2335 (dbus-get-property bus systemd-dbus-service path
2336 systemd-dbus-interface-service "CPUSchedulingPriority"))
2337
2338 (defun systemd-service-CPUAffinity (bus path)
2339 "Read only property."
2340 (dbus-get-property bus systemd-dbus-service path
2341 systemd-dbus-interface-service "CPUAffinity"))
2342
2343 (defun systemd-service-TimerSlackNSec (bus path)
2344 "Read only property."
2345 (dbus-get-property bus systemd-dbus-service path
2346 systemd-dbus-interface-service "TimerSlackNSec"))
2347
2348 (defun systemd-service-CPUSchedulingResetOnFork (bus path)
2349 "Read only property."
2350 (dbus-get-property bus systemd-dbus-service path
2351 systemd-dbus-interface-service "CPUSchedulingResetOnFork"))
2352
2353 (defun systemd-service-NonBlocking (bus path)
2354 "Read only property."
2355 (dbus-get-property bus systemd-dbus-service path
2356 systemd-dbus-interface-service "NonBlocking"))
2357
2358 (defun systemd-service-StandardInput (bus path)
2359 "Read only property."
2360 (dbus-get-property bus systemd-dbus-service path
2361 systemd-dbus-interface-service "StandardInput"))
2362
2363 (defun systemd-service-StandardOutput (bus path)
2364 "Read only property."
2365 (dbus-get-property bus systemd-dbus-service path
2366 systemd-dbus-interface-service "StandardOutput"))
2367
2368 (defun systemd-service-StandardError (bus path)
2369 "Read only property."
2370 (dbus-get-property bus systemd-dbus-service path
2371 systemd-dbus-interface-service "StandardError"))
2372
2373 (defun systemd-service-TTYPath (bus path)
2374 "Read only property."
2375 (dbus-get-property bus systemd-dbus-service path
2376 systemd-dbus-interface-service "TTYPath"))
2377
2378 (defun systemd-service-TTYReset (bus path)
2379 "Read only property."
2380 (dbus-get-property bus systemd-dbus-service path
2381 systemd-dbus-interface-service "TTYReset"))
2382
2383 (defun systemd-service-TTYVHangup (bus path)
2384 "Read only property."
2385 (dbus-get-property bus systemd-dbus-service path
2386 systemd-dbus-interface-service "TTYVHangup"))
2387
2388 (defun systemd-service-TTYVTDisallocate (bus path)
2389 "Read only property."
2390 (dbus-get-property bus systemd-dbus-service path
2391 systemd-dbus-interface-service "TTYVTDisallocate"))
2392
2393 (defun systemd-service-SyslogPriority (bus path)
2394 "Read only property."
2395 (dbus-get-property bus systemd-dbus-service path
2396 systemd-dbus-interface-service "SyslogPriority"))
2397
2398 (defun systemd-service-SyslogIdentifier (bus path)
2399 "Read only property."
2400 (dbus-get-property bus systemd-dbus-service path
2401 systemd-dbus-interface-service "SyslogIdentifier"))
2402
2403 (defun systemd-service-SyslogLevelPrefix (bus path)
2404 "Read only property."
2405 (dbus-get-property bus systemd-dbus-service path
2406 systemd-dbus-interface-service "SyslogLevelPrefix"))
2407
2408 (defun systemd-service-SyslogLevel (bus path)
2409 "Read only property."
2410 (dbus-get-property bus systemd-dbus-service path
2411 systemd-dbus-interface-service "SyslogLevel"))
2412
2413 (defun systemd-service-SyslogFacility (bus path)
2414 "Read only property."
2415 (dbus-get-property bus systemd-dbus-service path
2416 systemd-dbus-interface-service "SyslogFacility"))
2417
2418 (defun systemd-service-SecureBits (bus path)
2419 "Read only property."
2420 (dbus-get-property bus systemd-dbus-service path
2421 systemd-dbus-interface-service "SecureBits"))
2422
2423 (defun systemd-service-CapabilityBoundingSet (bus path)
2424 "Read only property."
2425 (dbus-get-property bus systemd-dbus-service path
2426 systemd-dbus-interface-service "CapabilityBoundingSet"))
2427
2428 (defun systemd-service-AmbientCapabilities (bus path)
2429 "Read only property."
2430 (dbus-get-property bus systemd-dbus-service path
2431 systemd-dbus-interface-service "AmbientCapabilities"))
2432
2433 (defun systemd-service-User (bus path)
2434 "Read only property."
2435 (dbus-get-property bus systemd-dbus-service path
2436 systemd-dbus-interface-service "User"))
2437
2438 (defun systemd-service-Group (bus path)
2439 "Read only property."
2440 (dbus-get-property bus systemd-dbus-service path
2441 systemd-dbus-interface-service "Group"))
2442
2443 (defun systemd-service-SupplementaryGroups (bus path)
2444 "Read only property."
2445 (dbus-get-property bus systemd-dbus-service path
2446 systemd-dbus-interface-service "SupplementaryGroups"))
2447
2448 (defun systemd-service-PAMName (bus path)
2449 "Read only property."
2450 (dbus-get-property bus systemd-dbus-service path
2451 systemd-dbus-interface-service "PAMName"))
2452
2453 (defun systemd-service-ReadWriteDirectories (bus path)
2454 "Read only property."
2455 (dbus-get-property bus systemd-dbus-service path
2456 systemd-dbus-interface-service "ReadWriteDirectories"))
2457
2458 (defun systemd-service-ReadOnlyDirectories (bus path)
2459 "Read only property."
2460 (dbus-get-property bus systemd-dbus-service path
2461 systemd-dbus-interface-service "ReadOnlyDirectories"))
2462
2463 (defun systemd-service-InaccessibleDirectories (bus path)
2464 "Read only property."
2465 (dbus-get-property bus systemd-dbus-service path
2466 systemd-dbus-interface-service "InaccessibleDirectories"))
2467
2468 (defun systemd-service-MountFlags (bus path)
2469 "Read only property."
2470 (dbus-get-property bus systemd-dbus-service path
2471 systemd-dbus-interface-service "MountFlags"))
2472
2473 (defun systemd-service-PrivateTmp (bus path)
2474 "Read only property."
2475 (dbus-get-property bus systemd-dbus-service path
2476 systemd-dbus-interface-service "PrivateTmp"))
2477
2478 (defun systemd-service-PrivateNetwork (bus path)
2479 "Read only property."
2480 (dbus-get-property bus systemd-dbus-service path
2481 systemd-dbus-interface-service "PrivateNetwork"))
2482
2483 (defun systemd-service-PrivateDevices (bus path)
2484 "Read only property."
2485 (dbus-get-property bus systemd-dbus-service path
2486 systemd-dbus-interface-service "PrivateDevices"))
2487
2488 (defun systemd-service-ProtectHome (bus path)
2489 "Read only property."
2490 (dbus-get-property bus systemd-dbus-service path
2491 systemd-dbus-interface-service "ProtectHome"))
2492
2493 (defun systemd-service-ProtectSystem (bus path)
2494 "Read only property."
2495 (dbus-get-property bus systemd-dbus-service path
2496 systemd-dbus-interface-service "ProtectSystem"))
2497
2498 (defun systemd-service-SameProcessGroup (bus path)
2499 "Read only property."
2500 (dbus-get-property bus systemd-dbus-service path
2501 systemd-dbus-interface-service "SameProcessGroup"))
2502
2503 (defun systemd-service-UtmpIdentifier (bus path)
2504 "Read only property."
2505 (dbus-get-property bus systemd-dbus-service path
2506 systemd-dbus-interface-service "UtmpIdentifier"))
2507
2508 (defun systemd-service-UtmpMode (bus path)
2509 "Read only property."
2510 (dbus-get-property bus systemd-dbus-service path
2511 systemd-dbus-interface-service "UtmpMode"))
2512
2513 (defun systemd-service-SELinuxContext (bus path)
2514 "Read only property."
2515 (dbus-get-property bus systemd-dbus-service path
2516 systemd-dbus-interface-service "SELinuxContext"))
2517
2518 (defun systemd-service-AppArmorProfile (bus path)
2519 "Read only property."
2520 (dbus-get-property bus systemd-dbus-service path
2521 systemd-dbus-interface-service "AppArmorProfile"))
2522
2523 (defun systemd-service-SmackProcessLabel (bus path)
2524 "Read only property."
2525 (dbus-get-property bus systemd-dbus-service path
2526 systemd-dbus-interface-service "SmackProcessLabel"))
2527
2528 (defun systemd-service-IgnoreSIGPIPE (bus path)
2529 "Read only property."
2530 (dbus-get-property bus systemd-dbus-service path
2531 systemd-dbus-interface-service "IgnoreSIGPIPE"))
2532
2533 (defun systemd-service-NoNewPrivileges (bus path)
2534 "Read only property."
2535 (dbus-get-property bus systemd-dbus-service path
2536 systemd-dbus-interface-service "NoNewPrivileges"))
2537
2538 (defun systemd-service-SystemCallFilter (bus path)
2539 "Read only property."
2540 (dbus-get-property bus systemd-dbus-service path
2541 systemd-dbus-interface-service "SystemCallFilter"))
2542
2543 (defun systemd-service-SystemCallArchitectures (bus path)
2544 "Read only property."
2545 (dbus-get-property bus systemd-dbus-service path
2546 systemd-dbus-interface-service "SystemCallArchitectures"))
2547
2548 (defun systemd-service-SystemCallErrorNumber (bus path)
2549 "Read only property."
2550 (dbus-get-property bus systemd-dbus-service path
2551 systemd-dbus-interface-service "SystemCallErrorNumber"))
2552
2553 (defun systemd-service-Personality (bus path)
2554 "Read only property."
2555 (dbus-get-property bus systemd-dbus-service path
2556 systemd-dbus-interface-service "Personality"))
2557
2558 (defun systemd-service-RestrictAddressFamilies (bus path)
2559 "Read only property."
2560 (dbus-get-property bus systemd-dbus-service path
2561 systemd-dbus-interface-service "RestrictAddressFamilies"))
2562
2563 (defun systemd-service-RuntimeDirectoryMode (bus path)
2564 "Read only property."
2565 (dbus-get-property bus systemd-dbus-service path
2566 systemd-dbus-interface-service "RuntimeDirectoryMode"))
2567
2568 (defun systemd-service-RuntimeDirectory (bus path)
2569 "Read only property."
2570 (dbus-get-property bus systemd-dbus-service path
2571 systemd-dbus-interface-service "RuntimeDirectory"))
2572
2573 (defun systemd-service-KillMode (bus path)
2574 "Read only property."
2575 (dbus-get-property bus systemd-dbus-service path
2576 systemd-dbus-interface-service "KillMode"))
2577
2578 (defun systemd-service-KillSignal (bus path)
2579 "Read only property."
2580 (dbus-get-property bus systemd-dbus-service path
2581 systemd-dbus-interface-service "KillSignal"))
2582
2583 (defun systemd-service-SendSIGKILL (bus path)
2584 "Read only property."
2585 (dbus-get-property bus systemd-dbus-service path
2586 systemd-dbus-interface-service "SendSIGKILL"))
2587
2588 (defun systemd-service-SendSIGHUP (bus path)
2589 "Read only property."
2590 (dbus-get-property bus systemd-dbus-service path
2591 systemd-dbus-interface-service "SendSIGHUP"))
2592
2593 ;;; org.freedesktop.systemd1.Slice
2594
2595 (defconst systemd-dbus-interface-slice "org.freedesktop.systemd1.Slice")
2596
2597 (defun systemd-slice-Slice (bus path)
2598 "Read only property."
2599 (dbus-get-property bus systemd-dbus-service path
2600 systemd-dbus-interface-slice "Slice"))
2601
2602 (defun systemd-slice-ControlGroup (bus path)
2603 "Read only property."
2604 (dbus-get-property bus systemd-dbus-service path
2605 systemd-dbus-interface-slice "ControlGroup"))
2606
2607 (defun systemd-slice-MemoryCurrent (bus path)
2608 "Read only property."
2609 (dbus-get-property bus systemd-dbus-service path
2610 systemd-dbus-interface-slice "MemoryCurrent"))
2611
2612 (defun systemd-slice-CPUUsageNSec (bus path)
2613 "Read only property."
2614 (dbus-get-property bus systemd-dbus-service path
2615 systemd-dbus-interface-slice "CPUUsageNSec"))
2616
2617 (defun systemd-slice-TasksCurrent (bus path)
2618 "Read only property."
2619 (dbus-get-property bus systemd-dbus-service path
2620 systemd-dbus-interface-slice "TasksCurrent"))
2621
2622 (defun systemd-slice-GetProcesses (bus path)
2623 (dbus-call-method bus systemd-dbus-service path
2624 systemd-dbus-interface-slice "GetProcesses"))
2625
2626 (defun systemd-slice-Delegate (bus path)
2627 "Read only property."
2628 (dbus-get-property bus systemd-dbus-service path
2629 systemd-dbus-interface-slice "Delegate"))
2630
2631 (defun systemd-slice-CPUAccounting (bus path)
2632 "Read only property."
2633 (dbus-get-property bus systemd-dbus-service path
2634 systemd-dbus-interface-slice "CPUAccounting"))
2635
2636 (defun systemd-slice-CPUShares (bus path)
2637 "Read only property."
2638 (dbus-get-property bus systemd-dbus-service path
2639 systemd-dbus-interface-slice "CPUShares"))
2640
2641 (defun systemd-slice-StartupCPUShares (bus path)
2642 "Read only property."
2643 (dbus-get-property bus systemd-dbus-service path
2644 systemd-dbus-interface-slice "StartupCPUShares"))
2645
2646 (defun systemd-slice-CPUQuotaPerSecUSec (bus path)
2647 "Read only property."
2648 (dbus-get-property bus systemd-dbus-service path
2649 systemd-dbus-interface-slice "CPUQuotaPerSecUSec"))
2650
2651 (defun systemd-slice-IOAccounting (bus path)
2652 "Read only property."
2653 (dbus-get-property bus systemd-dbus-service path
2654 systemd-dbus-interface-slice "IOAccounting"))
2655
2656 (defun systemd-slice-IOWeight (bus path)
2657 "Read only property."
2658 (dbus-get-property bus systemd-dbus-service path
2659 systemd-dbus-interface-slice "IOWeight"))
2660
2661 (defun systemd-slice-StartupIOWeight (bus path)
2662 "Read only property."
2663 (dbus-get-property bus systemd-dbus-service path
2664 systemd-dbus-interface-slice "StartupIOWeight"))
2665
2666 (defun systemd-slice-IODeviceWeight (bus path)
2667 "Read only property."
2668 (dbus-get-property bus systemd-dbus-service path
2669 systemd-dbus-interface-slice "IODeviceWeight"))
2670
2671 (defun systemd-slice-IOReadBandwidthMax (bus path)
2672 "Read only property."
2673 (dbus-get-property bus systemd-dbus-service path
2674 systemd-dbus-interface-slice "IOReadBandwidthMax"))
2675
2676 (defun systemd-slice-IOWriteBandwidthMax (bus path)
2677 "Read only property."
2678 (dbus-get-property bus systemd-dbus-service path
2679 systemd-dbus-interface-slice "IOWriteBandwidthMax"))
2680
2681 (defun systemd-slice-IOReadIOPSMax (bus path)
2682 "Read only property."
2683 (dbus-get-property bus systemd-dbus-service path
2684 systemd-dbus-interface-slice "IOReadIOPSMax"))
2685
2686 (defun systemd-slice-IOWriteIOPSMax (bus path)
2687 "Read only property."
2688 (dbus-get-property bus systemd-dbus-service path
2689 systemd-dbus-interface-slice "IOWriteIOPSMax"))
2690
2691 (defun systemd-slice-BlockIOAccounting (bus path)
2692 "Read only property."
2693 (dbus-get-property bus systemd-dbus-service path
2694 systemd-dbus-interface-slice "BlockIOAccounting"))
2695
2696 (defun systemd-slice-BlockIOWeight (bus path)
2697 "Read only property."
2698 (dbus-get-property bus systemd-dbus-service path
2699 systemd-dbus-interface-slice "BlockIOWeight"))
2700
2701 (defun systemd-slice-StartupBlockIOWeight (bus path)
2702 "Read only property."
2703 (dbus-get-property bus systemd-dbus-service path
2704 systemd-dbus-interface-slice "StartupBlockIOWeight"))
2705
2706 (defun systemd-slice-BlockIODeviceWeight (bus path)
2707 "Read only property."
2708 (dbus-get-property bus systemd-dbus-service path
2709 systemd-dbus-interface-slice "BlockIODeviceWeight"))
2710
2711 (defun systemd-slice-BlockIOReadBandwidth (bus path)
2712 "Read only property."
2713 (dbus-get-property bus systemd-dbus-service path
2714 systemd-dbus-interface-slice "BlockIOReadBandwidth"))
2715
2716 (defun systemd-slice-BlockIOWriteBandwidth (bus path)
2717 "Read only property."
2718 (dbus-get-property bus systemd-dbus-service path
2719 systemd-dbus-interface-slice "BlockIOWriteBandwidth"))
2720
2721 (defun systemd-slice-MemoryAccounting (bus path)
2722 "Read only property."
2723 (dbus-get-property bus systemd-dbus-service path
2724 systemd-dbus-interface-slice "MemoryAccounting"))
2725
2726 (defun systemd-slice-MemoryLimit (bus path)
2727 "Read only property."
2728 (dbus-get-property bus systemd-dbus-service path
2729 systemd-dbus-interface-slice "MemoryLimit"))
2730
2731 (defun systemd-slice-DevicePolicy (bus path)
2732 "Read only property."
2733 (dbus-get-property bus systemd-dbus-service path
2734 systemd-dbus-interface-slice "DevicePolicy"))
2735
2736 (defun systemd-slice-DeviceAllow (bus path)
2737 "Read only property."
2738 (dbus-get-property bus systemd-dbus-service path
2739 systemd-dbus-interface-slice "DeviceAllow"))
2740
2741 (defun systemd-slice-TasksAccounting (bus path)
2742 "Read only property."
2743 (dbus-get-property bus systemd-dbus-service path
2744 systemd-dbus-interface-slice "TasksAccounting"))
2745
2746 (defun systemd-slice-TasksMax (bus path)
2747 "Read only property."
2748 (dbus-get-property bus systemd-dbus-service path
2749 systemd-dbus-interface-slice "TasksMax"))
2750
2751 ;;; org.freedesktop.systemd1.Socket
2752
2753 (defconst systemd-dbus-interface-socket "org.freedesktop.systemd1.Socket")
2754
2755 (defun systemd-socket-BindIPv6Only (bus path)
2756 "Read only property."
2757 (dbus-get-property bus systemd-dbus-service path
2758 systemd-dbus-interface-socket "BindIPv6Only"))
2759
2760 (defun systemd-socket-Backlog (bus path)
2761 "Read only property."
2762 (dbus-get-property bus systemd-dbus-service path
2763 systemd-dbus-interface-socket "Backlog"))
2764
2765 (defun systemd-socket-TimeoutUSec (bus path)
2766 "Read only property."
2767 (dbus-get-property bus systemd-dbus-service path
2768 systemd-dbus-interface-socket "TimeoutUSec"))
2769
2770 (defun systemd-socket-BindToDevice (bus path)
2771 "Read only property."
2772 (dbus-get-property bus systemd-dbus-service path
2773 systemd-dbus-interface-socket "BindToDevice"))
2774
2775 (defun systemd-socket-SocketUser (bus path)
2776 "Read only property."
2777 (dbus-get-property bus systemd-dbus-service path
2778 systemd-dbus-interface-socket "SocketUser"))
2779
2780 (defun systemd-socket-SocketGroup (bus path)
2781 "Read only property."
2782 (dbus-get-property bus systemd-dbus-service path
2783 systemd-dbus-interface-socket "SocketGroup"))
2784
2785 (defun systemd-socket-SocketMode (bus path)
2786 "Read only property."
2787 (dbus-get-property bus systemd-dbus-service path
2788 systemd-dbus-interface-socket "SocketMode"))
2789
2790 (defun systemd-socket-DirectoryMode (bus path)
2791 "Read only property."
2792 (dbus-get-property bus systemd-dbus-service path
2793 systemd-dbus-interface-socket "DirectoryMode"))
2794
2795 (defun systemd-socket-Accept (bus path)
2796 "Read only property."
2797 (dbus-get-property bus systemd-dbus-service path
2798 systemd-dbus-interface-socket "Accept"))
2799
2800 (defun systemd-socket-Writable (bus path)
2801 "Read only property."
2802 (dbus-get-property bus systemd-dbus-service path
2803 systemd-dbus-interface-socket "Writable"))
2804
2805 (defun systemd-socket-KeepAlive (bus path)
2806 "Read only property."
2807 (dbus-get-property bus systemd-dbus-service path
2808 systemd-dbus-interface-socket "KeepAlive"))
2809
2810 (defun systemd-socket-KeepAliveTimeUSec (bus path)
2811 "Read only property."
2812 (dbus-get-property bus systemd-dbus-service path
2813 systemd-dbus-interface-socket "KeepAliveTimeUSec"))
2814
2815 (defun systemd-socket-KeepAliveIntervalUSec (bus path)
2816 "Read only property."
2817 (dbus-get-property bus systemd-dbus-service path
2818 systemd-dbus-interface-socket "KeepAliveIntervalUSec"))
2819
2820 (defun systemd-socket-KeepAliveProbes (bus path)
2821 "Read only property."
2822 (dbus-get-property bus systemd-dbus-service path
2823 systemd-dbus-interface-socket "KeepAliveProbes"))
2824
2825 (defun systemd-socket-DeferAcceptUSec (bus path)
2826 "Read only property."
2827 (dbus-get-property bus systemd-dbus-service path
2828 systemd-dbus-interface-socket "DeferAcceptUSec"))
2829
2830 (defun systemd-socket-NoDelay (bus path)
2831 "Read only property."
2832 (dbus-get-property bus systemd-dbus-service path
2833 systemd-dbus-interface-socket "NoDelay"))
2834
2835 (defun systemd-socket-Priority (bus path)
2836 "Read only property."
2837 (dbus-get-property bus systemd-dbus-service path
2838 systemd-dbus-interface-socket "Priority"))
2839
2840 (defun systemd-socket-ReceiveBuffer (bus path)
2841 "Read only property."
2842 (dbus-get-property bus systemd-dbus-service path
2843 systemd-dbus-interface-socket "ReceiveBuffer"))
2844
2845 (defun systemd-socket-SendBuffer (bus path)
2846 "Read only property."
2847 (dbus-get-property bus systemd-dbus-service path
2848 systemd-dbus-interface-socket "SendBuffer"))
2849
2850 (defun systemd-socket-IPTOS (bus path)
2851 "Read only property."
2852 (dbus-get-property bus systemd-dbus-service path
2853 systemd-dbus-interface-socket "IPTOS"))
2854
2855 (defun systemd-socket-IPTTL (bus path)
2856 "Read only property."
2857 (dbus-get-property bus systemd-dbus-service path
2858 systemd-dbus-interface-socket "IPTTL"))
2859
2860 (defun systemd-socket-PipeSize (bus path)
2861 "Read only property."
2862 (dbus-get-property bus systemd-dbus-service path
2863 systemd-dbus-interface-socket "PipeSize"))
2864
2865 (defun systemd-socket-FreeBind (bus path)
2866 "Read only property."
2867 (dbus-get-property bus systemd-dbus-service path
2868 systemd-dbus-interface-socket "FreeBind"))
2869
2870 (defun systemd-socket-Transparent (bus path)
2871 "Read only property."
2872 (dbus-get-property bus systemd-dbus-service path
2873 systemd-dbus-interface-socket "Transparent"))
2874
2875 (defun systemd-socket-Broadcast (bus path)
2876 "Read only property."
2877 (dbus-get-property bus systemd-dbus-service path
2878 systemd-dbus-interface-socket "Broadcast"))
2879
2880 (defun systemd-socket-PassCredentials (bus path)
2881 "Read only property."
2882 (dbus-get-property bus systemd-dbus-service path
2883 systemd-dbus-interface-socket "PassCredentials"))
2884
2885 (defun systemd-socket-PassSecurity (bus path)
2886 "Read only property."
2887 (dbus-get-property bus systemd-dbus-service path
2888 systemd-dbus-interface-socket "PassSecurity"))
2889
2890 (defun systemd-socket-RemoveOnStop (bus path)
2891 "Read only property."
2892 (dbus-get-property bus systemd-dbus-service path
2893 systemd-dbus-interface-socket "RemoveOnStop"))
2894
2895 (defun systemd-socket-Listen (bus path)
2896 "Read only property."
2897 (dbus-get-property bus systemd-dbus-service path
2898 systemd-dbus-interface-socket "Listen"))
2899
2900 (defun systemd-socket-Symlinks (bus path)
2901 "Read only property."
2902 (dbus-get-property bus systemd-dbus-service path
2903 systemd-dbus-interface-socket "Symlinks"))
2904
2905 (defun systemd-socket-Mark (bus path)
2906 "Read only property."
2907 (dbus-get-property bus systemd-dbus-service path
2908 systemd-dbus-interface-socket "Mark"))
2909
2910 (defun systemd-socket-MaxConnections (bus path)
2911 "Read only property."
2912 (dbus-get-property bus systemd-dbus-service path
2913 systemd-dbus-interface-socket "MaxConnections"))
2914
2915 (defun systemd-socket-MessageQueueMaxMessages (bus path)
2916 "Read only property."
2917 (dbus-get-property bus systemd-dbus-service path
2918 systemd-dbus-interface-socket "MessageQueueMaxMessages"))
2919
2920 (defun systemd-socket-MessageQueueMessageSize (bus path)
2921 "Read only property."
2922 (dbus-get-property bus systemd-dbus-service path
2923 systemd-dbus-interface-socket "MessageQueueMessageSize"))
2924
2925 (defun systemd-socket-ReusePort (bus path)
2926 "Read only property."
2927 (dbus-get-property bus systemd-dbus-service path
2928 systemd-dbus-interface-socket "ReusePort"))
2929
2930 (defun systemd-socket-SmackLabel (bus path)
2931 "Read only property."
2932 (dbus-get-property bus systemd-dbus-service path
2933 systemd-dbus-interface-socket "SmackLabel"))
2934
2935 (defun systemd-socket-SmackLabelIPIn (bus path)
2936 "Read only property."
2937 (dbus-get-property bus systemd-dbus-service path
2938 systemd-dbus-interface-socket "SmackLabelIPIn"))
2939
2940 (defun systemd-socket-SmackLabelIPOut (bus path)
2941 "Read only property."
2942 (dbus-get-property bus systemd-dbus-service path
2943 systemd-dbus-interface-socket "SmackLabelIPOut"))
2944
2945 (defun systemd-socket-ControlPID (bus path)
2946 "Read only property."
2947 (dbus-get-property bus systemd-dbus-service path
2948 systemd-dbus-interface-socket "ControlPID"))
2949
2950 (defun systemd-socket-Result (bus path)
2951 "Read only property."
2952 (dbus-get-property bus systemd-dbus-service path
2953 systemd-dbus-interface-socket "Result"))
2954
2955 (defun systemd-socket-NConnections (bus path)
2956 "Read only property."
2957 (dbus-get-property bus systemd-dbus-service path
2958 systemd-dbus-interface-socket "NConnections"))
2959
2960 (defun systemd-socket-NAccepted (bus path)
2961 "Read only property."
2962 (dbus-get-property bus systemd-dbus-service path
2963 systemd-dbus-interface-socket "NAccepted"))
2964
2965 (defun systemd-socket-FileDescriptorName (bus path)
2966 "Read only property."
2967 (dbus-get-property bus systemd-dbus-service path
2968 systemd-dbus-interface-socket "FileDescriptorName"))
2969
2970 (defun systemd-socket-SocketProtocol (bus path)
2971 "Read only property."
2972 (dbus-get-property bus systemd-dbus-service path
2973 systemd-dbus-interface-socket "SocketProtocol"))
2974
2975 (defun systemd-socket-TriggerLimitIntervalUSec (bus path)
2976 "Read only property."
2977 (dbus-get-property bus systemd-dbus-service path
2978 systemd-dbus-interface-socket "TriggerLimitIntervalUSec"))
2979
2980 (defun systemd-socket-TriggerLimitBurst (bus path)
2981 "Read only property."
2982 (dbus-get-property bus systemd-dbus-service path
2983 systemd-dbus-interface-socket "TriggerLimitBurst"))
2984
2985 (defun systemd-socket-ExecStartPre (bus path)
2986 "Read only property."
2987 (dbus-get-property bus systemd-dbus-service path
2988 systemd-dbus-interface-socket "ExecStartPre"))
2989
2990 (defun systemd-socket-ExecStartPost (bus path)
2991 "Read only property."
2992 (dbus-get-property bus systemd-dbus-service path
2993 systemd-dbus-interface-socket "ExecStartPost"))
2994
2995 (defun systemd-socket-ExecStopPre (bus path)
2996 "Read only property."
2997 (dbus-get-property bus systemd-dbus-service path
2998 systemd-dbus-interface-socket "ExecStopPre"))
2999
3000 (defun systemd-socket-ExecStopPost (bus path)
3001 "Read only property."
3002 (dbus-get-property bus systemd-dbus-service path
3003 systemd-dbus-interface-socket "ExecStopPost"))
3004
3005 (defun systemd-socket-Slice (bus path)
3006 "Read only property."
3007 (dbus-get-property bus systemd-dbus-service path
3008 systemd-dbus-interface-socket "Slice"))
3009
3010 (defun systemd-socket-ControlGroup (bus path)
3011 "Read only property."
3012 (dbus-get-property bus systemd-dbus-service path
3013 systemd-dbus-interface-socket "ControlGroup"))
3014
3015 (defun systemd-socket-MemoryCurrent (bus path)
3016 "Read only property."
3017 (dbus-get-property bus systemd-dbus-service path
3018 systemd-dbus-interface-socket "MemoryCurrent"))
3019
3020 (defun systemd-socket-CPUUsageNSec (bus path)
3021 "Read only property."
3022 (dbus-get-property bus systemd-dbus-service path
3023 systemd-dbus-interface-socket "CPUUsageNSec"))
3024
3025 (defun systemd-socket-TasksCurrent (bus path)
3026 "Read only property."
3027 (dbus-get-property bus systemd-dbus-service path
3028 systemd-dbus-interface-socket "TasksCurrent"))
3029
3030 (defun systemd-socket-GetProcesses (bus path)
3031 (dbus-call-method bus systemd-dbus-service path
3032 systemd-dbus-interface-socket "GetProcesses"))
3033
3034 (defun systemd-socket-Delegate (bus path)
3035 "Read only property."
3036 (dbus-get-property bus systemd-dbus-service path
3037 systemd-dbus-interface-socket "Delegate"))
3038
3039 (defun systemd-socket-CPUAccounting (bus path)
3040 "Read only property."
3041 (dbus-get-property bus systemd-dbus-service path
3042 systemd-dbus-interface-socket "CPUAccounting"))
3043
3044 (defun systemd-socket-CPUShares (bus path)
3045 "Read only property."
3046 (dbus-get-property bus systemd-dbus-service path
3047 systemd-dbus-interface-socket "CPUShares"))
3048
3049 (defun systemd-socket-StartupCPUShares (bus path)
3050 "Read only property."
3051 (dbus-get-property bus systemd-dbus-service path
3052 systemd-dbus-interface-socket "StartupCPUShares"))
3053
3054 (defun systemd-socket-CPUQuotaPerSecUSec (bus path)
3055 "Read only property."
3056 (dbus-get-property bus systemd-dbus-service path
3057 systemd-dbus-interface-socket "CPUQuotaPerSecUSec"))
3058
3059 (defun systemd-socket-IOAccounting (bus path)
3060 "Read only property."
3061 (dbus-get-property bus systemd-dbus-service path
3062 systemd-dbus-interface-socket "IOAccounting"))
3063
3064 (defun systemd-socket-IOWeight (bus path)
3065 "Read only property."
3066 (dbus-get-property bus systemd-dbus-service path
3067 systemd-dbus-interface-socket "IOWeight"))
3068
3069 (defun systemd-socket-StartupIOWeight (bus path)
3070 "Read only property."
3071 (dbus-get-property bus systemd-dbus-service path
3072 systemd-dbus-interface-socket "StartupIOWeight"))
3073
3074 (defun systemd-socket-IODeviceWeight (bus path)
3075 "Read only property."
3076 (dbus-get-property bus systemd-dbus-service path
3077 systemd-dbus-interface-socket "IODeviceWeight"))
3078
3079 (defun systemd-socket-IOReadBandwidthMax (bus path)
3080 "Read only property."
3081 (dbus-get-property bus systemd-dbus-service path
3082 systemd-dbus-interface-socket "IOReadBandwidthMax"))
3083
3084 (defun systemd-socket-IOWriteBandwidthMax (bus path)
3085 "Read only property."
3086 (dbus-get-property bus systemd-dbus-service path
3087 systemd-dbus-interface-socket "IOWriteBandwidthMax"))
3088
3089 (defun systemd-socket-IOReadIOPSMax (bus path)
3090 "Read only property."
3091 (dbus-get-property bus systemd-dbus-service path
3092 systemd-dbus-interface-socket "IOReadIOPSMax"))
3093
3094 (defun systemd-socket-IOWriteIOPSMax (bus path)
3095 "Read only property."
3096 (dbus-get-property bus systemd-dbus-service path
3097 systemd-dbus-interface-socket "IOWriteIOPSMax"))
3098
3099 (defun systemd-socket-BlockIOAccounting (bus path)
3100 "Read only property."
3101 (dbus-get-property bus systemd-dbus-service path
3102 systemd-dbus-interface-socket "BlockIOAccounting"))
3103
3104 (defun systemd-socket-BlockIOWeight (bus path)
3105 "Read only property."
3106 (dbus-get-property bus systemd-dbus-service path
3107 systemd-dbus-interface-socket "BlockIOWeight"))
3108
3109 (defun systemd-socket-StartupBlockIOWeight (bus path)
3110 "Read only property."
3111 (dbus-get-property bus systemd-dbus-service path
3112 systemd-dbus-interface-socket "StartupBlockIOWeight"))
3113
3114 (defun systemd-socket-BlockIODeviceWeight (bus path)
3115 "Read only property."
3116 (dbus-get-property bus systemd-dbus-service path
3117 systemd-dbus-interface-socket "BlockIODeviceWeight"))
3118
3119 (defun systemd-socket-BlockIOReadBandwidth (bus path)
3120 "Read only property."
3121 (dbus-get-property bus systemd-dbus-service path
3122 systemd-dbus-interface-socket "BlockIOReadBandwidth"))
3123
3124 (defun systemd-socket-BlockIOWriteBandwidth (bus path)
3125 "Read only property."
3126 (dbus-get-property bus systemd-dbus-service path
3127 systemd-dbus-interface-socket "BlockIOWriteBandwidth"))
3128
3129 (defun systemd-socket-MemoryAccounting (bus path)
3130 "Read only property."
3131 (dbus-get-property bus systemd-dbus-service path
3132 systemd-dbus-interface-socket "MemoryAccounting"))
3133
3134 (defun systemd-socket-MemoryLimit (bus path)
3135 "Read only property."
3136 (dbus-get-property bus systemd-dbus-service path
3137 systemd-dbus-interface-socket "MemoryLimit"))
3138
3139 (defun systemd-socket-DevicePolicy (bus path)
3140 "Read only property."
3141 (dbus-get-property bus systemd-dbus-service path
3142 systemd-dbus-interface-socket "DevicePolicy"))
3143
3144 (defun systemd-socket-DeviceAllow (bus path)
3145 "Read only property."
3146 (dbus-get-property bus systemd-dbus-service path
3147 systemd-dbus-interface-socket "DeviceAllow"))
3148
3149 (defun systemd-socket-TasksAccounting (bus path)
3150 "Read only property."
3151 (dbus-get-property bus systemd-dbus-service path
3152 systemd-dbus-interface-socket "TasksAccounting"))
3153
3154 (defun systemd-socket-TasksMax (bus path)
3155 "Read only property."
3156 (dbus-get-property bus systemd-dbus-service path
3157 systemd-dbus-interface-socket "TasksMax"))
3158
3159 (defun systemd-socket-Environment (bus path)
3160 "Read only property."
3161 (dbus-get-property bus systemd-dbus-service path
3162 systemd-dbus-interface-socket "Environment"))
3163
3164 (defun systemd-socket-EnvironmentFiles (bus path)
3165 "Read only property."
3166 (dbus-get-property bus systemd-dbus-service path
3167 systemd-dbus-interface-socket "EnvironmentFiles"))
3168
3169 (defun systemd-socket-PassEnvironment (bus path)
3170 "Read only property."
3171 (dbus-get-property bus systemd-dbus-service path
3172 systemd-dbus-interface-socket "PassEnvironment"))
3173
3174 (defun systemd-socket-UMask (bus path)
3175 "Read only property."
3176 (dbus-get-property bus systemd-dbus-service path
3177 systemd-dbus-interface-socket "UMask"))
3178
3179 (defun systemd-socket-LimitCPU (bus path)
3180 "Read only property."
3181 (dbus-get-property bus systemd-dbus-service path
3182 systemd-dbus-interface-socket "LimitCPU"))
3183
3184 (defun systemd-socket-LimitCPUSoft (bus path)
3185 "Read only property."
3186 (dbus-get-property bus systemd-dbus-service path
3187 systemd-dbus-interface-socket "LimitCPUSoft"))
3188
3189 (defun systemd-socket-LimitFSIZE (bus path)
3190 "Read only property."
3191 (dbus-get-property bus systemd-dbus-service path
3192 systemd-dbus-interface-socket "LimitFSIZE"))
3193
3194 (defun systemd-socket-LimitFSIZESoft (bus path)
3195 "Read only property."
3196 (dbus-get-property bus systemd-dbus-service path
3197 systemd-dbus-interface-socket "LimitFSIZESoft"))
3198
3199 (defun systemd-socket-LimitDATA (bus path)
3200 "Read only property."
3201 (dbus-get-property bus systemd-dbus-service path
3202 systemd-dbus-interface-socket "LimitDATA"))
3203
3204 (defun systemd-socket-LimitDATASoft (bus path)
3205 "Read only property."
3206 (dbus-get-property bus systemd-dbus-service path
3207 systemd-dbus-interface-socket "LimitDATASoft"))
3208
3209 (defun systemd-socket-LimitSTACK (bus path)
3210 "Read only property."
3211 (dbus-get-property bus systemd-dbus-service path
3212 systemd-dbus-interface-socket "LimitSTACK"))
3213
3214 (defun systemd-socket-LimitSTACKSoft (bus path)
3215 "Read only property."
3216 (dbus-get-property bus systemd-dbus-service path
3217 systemd-dbus-interface-socket "LimitSTACKSoft"))
3218
3219 (defun systemd-socket-LimitCORE (bus path)
3220 "Read only property."
3221 (dbus-get-property bus systemd-dbus-service path
3222 systemd-dbus-interface-socket "LimitCORE"))
3223
3224 (defun systemd-socket-LimitCORESoft (bus path)
3225 "Read only property."
3226 (dbus-get-property bus systemd-dbus-service path
3227 systemd-dbus-interface-socket "LimitCORESoft"))
3228
3229 (defun systemd-socket-LimitRSS (bus path)
3230 "Read only property."
3231 (dbus-get-property bus systemd-dbus-service path
3232 systemd-dbus-interface-socket "LimitRSS"))
3233
3234 (defun systemd-socket-LimitRSSSoft (bus path)
3235 "Read only property."
3236 (dbus-get-property bus systemd-dbus-service path
3237 systemd-dbus-interface-socket "LimitRSSSoft"))
3238
3239 (defun systemd-socket-LimitNOFILE (bus path)
3240 "Read only property."
3241 (dbus-get-property bus systemd-dbus-service path
3242 systemd-dbus-interface-socket "LimitNOFILE"))
3243
3244 (defun systemd-socket-LimitNOFILESoft (bus path)
3245 "Read only property."
3246 (dbus-get-property bus systemd-dbus-service path
3247 systemd-dbus-interface-socket "LimitNOFILESoft"))
3248
3249 (defun systemd-socket-LimitAS (bus path)
3250 "Read only property."
3251 (dbus-get-property bus systemd-dbus-service path
3252 systemd-dbus-interface-socket "LimitAS"))
3253
3254 (defun systemd-socket-LimitASSoft (bus path)
3255 "Read only property."
3256 (dbus-get-property bus systemd-dbus-service path
3257 systemd-dbus-interface-socket "LimitASSoft"))
3258
3259 (defun systemd-socket-LimitNPROC (bus path)
3260 "Read only property."
3261 (dbus-get-property bus systemd-dbus-service path
3262 systemd-dbus-interface-socket "LimitNPROC"))
3263
3264 (defun systemd-socket-LimitNPROCSoft (bus path)
3265 "Read only property."
3266 (dbus-get-property bus systemd-dbus-service path
3267 systemd-dbus-interface-socket "LimitNPROCSoft"))
3268
3269 (defun systemd-socket-LimitMEMLOCK (bus path)
3270 "Read only property."
3271 (dbus-get-property bus systemd-dbus-service path
3272 systemd-dbus-interface-socket "LimitMEMLOCK"))
3273
3274 (defun systemd-socket-LimitMEMLOCKSoft (bus path)
3275 "Read only property."
3276 (dbus-get-property bus systemd-dbus-service path
3277 systemd-dbus-interface-socket "LimitMEMLOCKSoft"))
3278
3279 (defun systemd-socket-LimitLOCKS (bus path)
3280 "Read only property."
3281 (dbus-get-property bus systemd-dbus-service path
3282 systemd-dbus-interface-socket "LimitLOCKS"))
3283
3284 (defun systemd-socket-LimitLOCKSSoft (bus path)
3285 "Read only property."
3286 (dbus-get-property bus systemd-dbus-service path
3287 systemd-dbus-interface-socket "LimitLOCKSSoft"))
3288
3289 (defun systemd-socket-LimitSIGPENDING (bus path)
3290 "Read only property."
3291 (dbus-get-property bus systemd-dbus-service path
3292 systemd-dbus-interface-socket "LimitSIGPENDING"))
3293
3294 (defun systemd-socket-LimitSIGPENDINGSoft (bus path)
3295 "Read only property."
3296 (dbus-get-property bus systemd-dbus-service path
3297 systemd-dbus-interface-socket "LimitSIGPENDINGSoft"))
3298
3299 (defun systemd-socket-LimitMSGQUEUE (bus path)
3300 "Read only property."
3301 (dbus-get-property bus systemd-dbus-service path
3302 systemd-dbus-interface-socket "LimitMSGQUEUE"))
3303
3304 (defun systemd-socket-LimitMSGQUEUESoft (bus path)
3305 "Read only property."
3306 (dbus-get-property bus systemd-dbus-service path
3307 systemd-dbus-interface-socket "LimitMSGQUEUESoft"))
3308
3309 (defun systemd-socket-LimitNICE (bus path)
3310 "Read only property."
3311 (dbus-get-property bus systemd-dbus-service path
3312 systemd-dbus-interface-socket "LimitNICE"))
3313
3314 (defun systemd-socket-LimitNICESoft (bus path)
3315 "Read only property."
3316 (dbus-get-property bus systemd-dbus-service path
3317 systemd-dbus-interface-socket "LimitNICESoft"))
3318
3319 (defun systemd-socket-LimitRTPRIO (bus path)
3320 "Read only property."
3321 (dbus-get-property bus systemd-dbus-service path
3322 systemd-dbus-interface-socket "LimitRTPRIO"))
3323
3324 (defun systemd-socket-LimitRTPRIOSoft (bus path)
3325 "Read only property."
3326 (dbus-get-property bus systemd-dbus-service path
3327 systemd-dbus-interface-socket "LimitRTPRIOSoft"))
3328
3329 (defun systemd-socket-LimitRTTIME (bus path)
3330 "Read only property."
3331 (dbus-get-property bus systemd-dbus-service path
3332 systemd-dbus-interface-socket "LimitRTTIME"))
3333
3334 (defun systemd-socket-LimitRTTIMESoft (bus path)
3335 "Read only property."
3336 (dbus-get-property bus systemd-dbus-service path
3337 systemd-dbus-interface-socket "LimitRTTIMESoft"))
3338
3339 (defun systemd-socket-WorkingDirectory (bus path)
3340 "Read only property."
3341 (dbus-get-property bus systemd-dbus-service path
3342 systemd-dbus-interface-socket "WorkingDirectory"))
3343
3344 (defun systemd-socket-RootDirectory (bus path)
3345 "Read only property."
3346 (dbus-get-property bus systemd-dbus-service path
3347 systemd-dbus-interface-socket "RootDirectory"))
3348
3349 (defun systemd-socket-OOMScoreAdjust (bus path)
3350 "Read only property."
3351 (dbus-get-property bus systemd-dbus-service path
3352 systemd-dbus-interface-socket "OOMScoreAdjust"))
3353
3354 (defun systemd-socket-Nice (bus path)
3355 "Read only property."
3356 (dbus-get-property bus systemd-dbus-service path
3357 systemd-dbus-interface-socket "Nice"))
3358
3359 (defun systemd-socket-IOScheduling (bus path)
3360 "Read only property."
3361 (dbus-get-property bus systemd-dbus-service path
3362 systemd-dbus-interface-socket "IOScheduling"))
3363
3364 (defun systemd-socket-CPUSchedulingPolicy (bus path)
3365 "Read only property."
3366 (dbus-get-property bus systemd-dbus-service path
3367 systemd-dbus-interface-socket "CPUSchedulingPolicy"))
3368
3369 (defun systemd-socket-CPUSchedulingPriority (bus path)
3370 "Read only property."
3371 (dbus-get-property bus systemd-dbus-service path
3372 systemd-dbus-interface-socket "CPUSchedulingPriority"))
3373
3374 (defun systemd-socket-CPUAffinity (bus path)
3375 "Read only property."
3376 (dbus-get-property bus systemd-dbus-service path
3377 systemd-dbus-interface-socket "CPUAffinity"))
3378
3379 (defun systemd-socket-TimerSlackNSec (bus path)
3380 "Read only property."
3381 (dbus-get-property bus systemd-dbus-service path
3382 systemd-dbus-interface-socket "TimerSlackNSec"))
3383
3384 (defun systemd-socket-CPUSchedulingResetOnFork (bus path)
3385 "Read only property."
3386 (dbus-get-property bus systemd-dbus-service path
3387 systemd-dbus-interface-socket "CPUSchedulingResetOnFork"))
3388
3389 (defun systemd-socket-NonBlocking (bus path)
3390 "Read only property."
3391 (dbus-get-property bus systemd-dbus-service path
3392 systemd-dbus-interface-socket "NonBlocking"))
3393
3394 (defun systemd-socket-StandardInput (bus path)
3395 "Read only property."
3396 (dbus-get-property bus systemd-dbus-service path
3397 systemd-dbus-interface-socket "StandardInput"))
3398
3399 (defun systemd-socket-StandardOutput (bus path)
3400 "Read only property."
3401 (dbus-get-property bus systemd-dbus-service path
3402 systemd-dbus-interface-socket "StandardOutput"))
3403
3404 (defun systemd-socket-StandardError (bus path)
3405 "Read only property."
3406 (dbus-get-property bus systemd-dbus-service path
3407 systemd-dbus-interface-socket "StandardError"))
3408
3409 (defun systemd-socket-TTYPath (bus path)
3410 "Read only property."
3411 (dbus-get-property bus systemd-dbus-service path
3412 systemd-dbus-interface-socket "TTYPath"))
3413
3414 (defun systemd-socket-TTYReset (bus path)
3415 "Read only property."
3416 (dbus-get-property bus systemd-dbus-service path
3417 systemd-dbus-interface-socket "TTYReset"))
3418
3419 (defun systemd-socket-TTYVHangup (bus path)
3420 "Read only property."
3421 (dbus-get-property bus systemd-dbus-service path
3422 systemd-dbus-interface-socket "TTYVHangup"))
3423
3424 (defun systemd-socket-TTYVTDisallocate (bus path)
3425 "Read only property."
3426 (dbus-get-property bus systemd-dbus-service path
3427 systemd-dbus-interface-socket "TTYVTDisallocate"))
3428
3429 (defun systemd-socket-SyslogPriority (bus path)
3430 "Read only property."
3431 (dbus-get-property bus systemd-dbus-service path
3432 systemd-dbus-interface-socket "SyslogPriority"))
3433
3434 (defun systemd-socket-SyslogIdentifier (bus path)
3435 "Read only property."
3436 (dbus-get-property bus systemd-dbus-service path
3437 systemd-dbus-interface-socket "SyslogIdentifier"))
3438
3439 (defun systemd-socket-SyslogLevelPrefix (bus path)
3440 "Read only property."
3441 (dbus-get-property bus systemd-dbus-service path
3442 systemd-dbus-interface-socket "SyslogLevelPrefix"))
3443
3444 (defun systemd-socket-SyslogLevel (bus path)
3445 "Read only property."
3446 (dbus-get-property bus systemd-dbus-service path
3447 systemd-dbus-interface-socket "SyslogLevel"))
3448
3449 (defun systemd-socket-SyslogFacility (bus path)
3450 "Read only property."
3451 (dbus-get-property bus systemd-dbus-service path
3452 systemd-dbus-interface-socket "SyslogFacility"))
3453
3454 (defun systemd-socket-SecureBits (bus path)
3455 "Read only property."
3456 (dbus-get-property bus systemd-dbus-service path
3457 systemd-dbus-interface-socket "SecureBits"))
3458
3459 (defun systemd-socket-CapabilityBoundingSet (bus path)
3460 "Read only property."
3461 (dbus-get-property bus systemd-dbus-service path
3462 systemd-dbus-interface-socket "CapabilityBoundingSet"))
3463
3464 (defun systemd-socket-AmbientCapabilities (bus path)
3465 "Read only property."
3466 (dbus-get-property bus systemd-dbus-service path
3467 systemd-dbus-interface-socket "AmbientCapabilities"))
3468
3469 (defun systemd-socket-User (bus path)
3470 "Read only property."
3471 (dbus-get-property bus systemd-dbus-service path
3472 systemd-dbus-interface-socket "User"))
3473
3474 (defun systemd-socket-Group (bus path)
3475 "Read only property."
3476 (dbus-get-property bus systemd-dbus-service path
3477 systemd-dbus-interface-socket "Group"))
3478
3479 (defun systemd-socket-SupplementaryGroups (bus path)
3480 "Read only property."
3481 (dbus-get-property bus systemd-dbus-service path
3482 systemd-dbus-interface-socket "SupplementaryGroups"))
3483
3484 (defun systemd-socket-PAMName (bus path)
3485 "Read only property."
3486 (dbus-get-property bus systemd-dbus-service path
3487 systemd-dbus-interface-socket "PAMName"))
3488
3489 (defun systemd-socket-ReadWriteDirectories (bus path)
3490 "Read only property."
3491 (dbus-get-property bus systemd-dbus-service path
3492 systemd-dbus-interface-socket "ReadWriteDirectories"))
3493
3494 (defun systemd-socket-ReadOnlyDirectories (bus path)
3495 "Read only property."
3496 (dbus-get-property bus systemd-dbus-service path
3497 systemd-dbus-interface-socket "ReadOnlyDirectories"))
3498
3499 (defun systemd-socket-InaccessibleDirectories (bus path)
3500 "Read only property."
3501 (dbus-get-property bus systemd-dbus-service path
3502 systemd-dbus-interface-socket "InaccessibleDirectories"))
3503
3504 (defun systemd-socket-MountFlags (bus path)
3505 "Read only property."
3506 (dbus-get-property bus systemd-dbus-service path
3507 systemd-dbus-interface-socket "MountFlags"))
3508
3509 (defun systemd-socket-PrivateTmp (bus path)
3510 "Read only property."
3511 (dbus-get-property bus systemd-dbus-service path
3512 systemd-dbus-interface-socket "PrivateTmp"))
3513
3514 (defun systemd-socket-PrivateNetwork (bus path)
3515 "Read only property."
3516 (dbus-get-property bus systemd-dbus-service path
3517 systemd-dbus-interface-socket "PrivateNetwork"))
3518
3519 (defun systemd-socket-PrivateDevices (bus path)
3520 "Read only property."
3521 (dbus-get-property bus systemd-dbus-service path
3522 systemd-dbus-interface-socket "PrivateDevices"))
3523
3524 (defun systemd-socket-ProtectHome (bus path)
3525 "Read only property."
3526 (dbus-get-property bus systemd-dbus-service path
3527 systemd-dbus-interface-socket "ProtectHome"))
3528
3529 (defun systemd-socket-ProtectSystem (bus path)
3530 "Read only property."
3531 (dbus-get-property bus systemd-dbus-service path
3532 systemd-dbus-interface-socket "ProtectSystem"))
3533
3534 (defun systemd-socket-SameProcessGroup (bus path)
3535 "Read only property."
3536 (dbus-get-property bus systemd-dbus-service path
3537 systemd-dbus-interface-socket "SameProcessGroup"))
3538
3539 (defun systemd-socket-UtmpIdentifier (bus path)
3540 "Read only property."
3541 (dbus-get-property bus systemd-dbus-service path
3542 systemd-dbus-interface-socket "UtmpIdentifier"))
3543
3544 (defun systemd-socket-UtmpMode (bus path)
3545 "Read only property."
3546 (dbus-get-property bus systemd-dbus-service path
3547 systemd-dbus-interface-socket "UtmpMode"))
3548
3549 (defun systemd-socket-SELinuxContext (bus path)
3550 "Read only property."
3551 (dbus-get-property bus systemd-dbus-service path
3552 systemd-dbus-interface-socket "SELinuxContext"))
3553
3554 (defun systemd-socket-AppArmorProfile (bus path)
3555 "Read only property."
3556 (dbus-get-property bus systemd-dbus-service path
3557 systemd-dbus-interface-socket "AppArmorProfile"))
3558
3559 (defun systemd-socket-SmackProcessLabel (bus path)
3560 "Read only property."
3561 (dbus-get-property bus systemd-dbus-service path
3562 systemd-dbus-interface-socket "SmackProcessLabel"))
3563
3564 (defun systemd-socket-IgnoreSIGPIPE (bus path)
3565 "Read only property."
3566 (dbus-get-property bus systemd-dbus-service path
3567 systemd-dbus-interface-socket "IgnoreSIGPIPE"))
3568
3569 (defun systemd-socket-NoNewPrivileges (bus path)
3570 "Read only property."
3571 (dbus-get-property bus systemd-dbus-service path
3572 systemd-dbus-interface-socket "NoNewPrivileges"))
3573
3574 (defun systemd-socket-SystemCallFilter (bus path)
3575 "Read only property."
3576 (dbus-get-property bus systemd-dbus-service path
3577 systemd-dbus-interface-socket "SystemCallFilter"))
3578
3579 (defun systemd-socket-SystemCallArchitectures (bus path)
3580 "Read only property."
3581 (dbus-get-property bus systemd-dbus-service path
3582 systemd-dbus-interface-socket "SystemCallArchitectures"))
3583
3584 (defun systemd-socket-SystemCallErrorNumber (bus path)
3585 "Read only property."
3586 (dbus-get-property bus systemd-dbus-service path
3587 systemd-dbus-interface-socket "SystemCallErrorNumber"))
3588
3589 (defun systemd-socket-Personality (bus path)
3590 "Read only property."
3591 (dbus-get-property bus systemd-dbus-service path
3592 systemd-dbus-interface-socket "Personality"))
3593
3594 (defun systemd-socket-RestrictAddressFamilies (bus path)
3595 "Read only property."
3596 (dbus-get-property bus systemd-dbus-service path
3597 systemd-dbus-interface-socket "RestrictAddressFamilies"))
3598
3599 (defun systemd-socket-RuntimeDirectoryMode (bus path)
3600 "Read only property."
3601 (dbus-get-property bus systemd-dbus-service path
3602 systemd-dbus-interface-socket "RuntimeDirectoryMode"))
3603
3604 (defun systemd-socket-RuntimeDirectory (bus path)
3605 "Read only property."
3606 (dbus-get-property bus systemd-dbus-service path
3607 systemd-dbus-interface-socket "RuntimeDirectory"))
3608
3609 (defun systemd-socket-KillMode (bus path)
3610 "Read only property."
3611 (dbus-get-property bus systemd-dbus-service path
3612 systemd-dbus-interface-socket "KillMode"))
3613
3614 (defun systemd-socket-KillSignal (bus path)
3615 "Read only property."
3616 (dbus-get-property bus systemd-dbus-service path
3617 systemd-dbus-interface-socket "KillSignal"))
3618
3619 (defun systemd-socket-SendSIGKILL (bus path)
3620 "Read only property."
3621 (dbus-get-property bus systemd-dbus-service path
3622 systemd-dbus-interface-socket "SendSIGKILL"))
3623
3624 (defun systemd-socket-SendSIGHUP (bus path)
3625 "Read only property."
3626 (dbus-get-property bus systemd-dbus-service path
3627 systemd-dbus-interface-socket "SendSIGHUP"))
3628
3629 ;;; org.freedesktop.systemd1.Swap
3630
3631 (defconst systemd-dbus-interface-swap "org.freedesktop.systemd1.Swap")
3632
3633 (defun systemd-swap-What (bus path)
3634 "Read only property."
3635 (dbus-get-property bus systemd-dbus-service path
3636 systemd-dbus-interface-swap "What"))
3637
3638 (defun systemd-swap-Priority (bus path)
3639 "Read only property."
3640 (dbus-get-property bus systemd-dbus-service path
3641 systemd-dbus-interface-swap "Priority"))
3642
3643 (defun systemd-swap-Options (bus path)
3644 "Read only property."
3645 (dbus-get-property bus systemd-dbus-service path
3646 systemd-dbus-interface-swap "Options"))
3647
3648 (defun systemd-swap-TimeoutUSec (bus path)
3649 "Read only property."
3650 (dbus-get-property bus systemd-dbus-service path
3651 systemd-dbus-interface-swap "TimeoutUSec"))
3652
3653 (defun systemd-swap-ControlPID (bus path)
3654 "Read only property."
3655 (dbus-get-property bus systemd-dbus-service path
3656 systemd-dbus-interface-swap "ControlPID"))
3657
3658 (defun systemd-swap-Result (bus path)
3659 "Read only property."
3660 (dbus-get-property bus systemd-dbus-service path
3661 systemd-dbus-interface-swap "Result"))
3662
3663 (defun systemd-swap-ExecActivate (bus path)
3664 "Read only property."
3665 (dbus-get-property bus systemd-dbus-service path
3666 systemd-dbus-interface-swap "ExecActivate"))
3667
3668 (defun systemd-swap-ExecDeactivate (bus path)
3669 "Read only property."
3670 (dbus-get-property bus systemd-dbus-service path
3671 systemd-dbus-interface-swap "ExecDeactivate"))
3672
3673 (defun systemd-swap-Slice (bus path)
3674 "Read only property."
3675 (dbus-get-property bus systemd-dbus-service path
3676 systemd-dbus-interface-swap "Slice"))
3677
3678 (defun systemd-swap-ControlGroup (bus path)
3679 "Read only property."
3680 (dbus-get-property bus systemd-dbus-service path
3681 systemd-dbus-interface-swap "ControlGroup"))
3682
3683 (defun systemd-swap-MemoryCurrent (bus path)
3684 "Read only property."
3685 (dbus-get-property bus systemd-dbus-service path
3686 systemd-dbus-interface-swap "MemoryCurrent"))
3687
3688 (defun systemd-swap-CPUUsageNSec (bus path)
3689 "Read only property."
3690 (dbus-get-property bus systemd-dbus-service path
3691 systemd-dbus-interface-swap "CPUUsageNSec"))
3692
3693 (defun systemd-swap-TasksCurrent (bus path)
3694 "Read only property."
3695 (dbus-get-property bus systemd-dbus-service path
3696 systemd-dbus-interface-swap "TasksCurrent"))
3697
3698 (defun systemd-swap-GetProcesses (bus path)
3699 (dbus-call-method bus systemd-dbus-service path
3700 systemd-dbus-interface-swap "GetProcesses"))
3701
3702 (defun systemd-swap-Delegate (bus path)
3703 "Read only property."
3704 (dbus-get-property bus systemd-dbus-service path
3705 systemd-dbus-interface-swap "Delegate"))
3706
3707 (defun systemd-swap-CPUAccounting (bus path)
3708 "Read only property."
3709 (dbus-get-property bus systemd-dbus-service path
3710 systemd-dbus-interface-swap "CPUAccounting"))
3711
3712 (defun systemd-swap-CPUShares (bus path)
3713 "Read only property."
3714 (dbus-get-property bus systemd-dbus-service path
3715 systemd-dbus-interface-swap "CPUShares"))
3716
3717 (defun systemd-swap-StartupCPUShares (bus path)
3718 "Read only property."
3719 (dbus-get-property bus systemd-dbus-service path
3720 systemd-dbus-interface-swap "StartupCPUShares"))
3721
3722 (defun systemd-swap-CPUQuotaPerSecUSec (bus path)
3723 "Read only property."
3724 (dbus-get-property bus systemd-dbus-service path
3725 systemd-dbus-interface-swap "CPUQuotaPerSecUSec"))
3726
3727 (defun systemd-swap-IOAccounting (bus path)
3728 "Read only property."
3729 (dbus-get-property bus systemd-dbus-service path
3730 systemd-dbus-interface-swap "IOAccounting"))
3731
3732 (defun systemd-swap-IOWeight (bus path)
3733 "Read only property."
3734 (dbus-get-property bus systemd-dbus-service path
3735 systemd-dbus-interface-swap "IOWeight"))
3736
3737 (defun systemd-swap-StartupIOWeight (bus path)
3738 "Read only property."
3739 (dbus-get-property bus systemd-dbus-service path
3740 systemd-dbus-interface-swap "StartupIOWeight"))
3741
3742 (defun systemd-swap-IODeviceWeight (bus path)
3743 "Read only property."
3744 (dbus-get-property bus systemd-dbus-service path
3745 systemd-dbus-interface-swap "IODeviceWeight"))
3746
3747 (defun systemd-swap-IOReadBandwidthMax (bus path)
3748 "Read only property."
3749 (dbus-get-property bus systemd-dbus-service path
3750 systemd-dbus-interface-swap "IOReadBandwidthMax"))
3751
3752 (defun systemd-swap-IOWriteBandwidthMax (bus path)
3753 "Read only property."
3754 (dbus-get-property bus systemd-dbus-service path
3755 systemd-dbus-interface-swap "IOWriteBandwidthMax"))
3756
3757 (defun systemd-swap-IOReadIOPSMax (bus path)
3758 "Read only property."
3759 (dbus-get-property bus systemd-dbus-service path
3760 systemd-dbus-interface-swap "IOReadIOPSMax"))
3761
3762 (defun systemd-swap-IOWriteIOPSMax (bus path)
3763 "Read only property."
3764 (dbus-get-property bus systemd-dbus-service path
3765 systemd-dbus-interface-swap "IOWriteIOPSMax"))
3766
3767 (defun systemd-swap-BlockIOAccounting (bus path)
3768 "Read only property."
3769 (dbus-get-property bus systemd-dbus-service path
3770 systemd-dbus-interface-swap "BlockIOAccounting"))
3771
3772 (defun systemd-swap-BlockIOWeight (bus path)
3773 "Read only property."
3774 (dbus-get-property bus systemd-dbus-service path
3775 systemd-dbus-interface-swap "BlockIOWeight"))
3776
3777 (defun systemd-swap-StartupBlockIOWeight (bus path)
3778 "Read only property."
3779 (dbus-get-property bus systemd-dbus-service path
3780 systemd-dbus-interface-swap "StartupBlockIOWeight"))
3781
3782 (defun systemd-swap-BlockIODeviceWeight (bus path)
3783 "Read only property."
3784 (dbus-get-property bus systemd-dbus-service path
3785 systemd-dbus-interface-swap "BlockIODeviceWeight"))
3786
3787 (defun systemd-swap-BlockIOReadBandwidth (bus path)
3788 "Read only property."
3789 (dbus-get-property bus systemd-dbus-service path
3790 systemd-dbus-interface-swap "BlockIOReadBandwidth"))
3791
3792 (defun systemd-swap-BlockIOWriteBandwidth (bus path)
3793 "Read only property."
3794 (dbus-get-property bus systemd-dbus-service path
3795 systemd-dbus-interface-swap "BlockIOWriteBandwidth"))
3796
3797 (defun systemd-swap-MemoryAccounting (bus path)
3798 "Read only property."
3799 (dbus-get-property bus systemd-dbus-service path
3800 systemd-dbus-interface-swap "MemoryAccounting"))
3801
3802 (defun systemd-swap-MemoryLimit (bus path)
3803 "Read only property."
3804 (dbus-get-property bus systemd-dbus-service path
3805 systemd-dbus-interface-swap "MemoryLimit"))
3806
3807 (defun systemd-swap-DevicePolicy (bus path)
3808 "Read only property."
3809 (dbus-get-property bus systemd-dbus-service path
3810 systemd-dbus-interface-swap "DevicePolicy"))
3811
3812 (defun systemd-swap-DeviceAllow (bus path)
3813 "Read only property."
3814 (dbus-get-property bus systemd-dbus-service path
3815 systemd-dbus-interface-swap "DeviceAllow"))
3816
3817 (defun systemd-swap-TasksAccounting (bus path)
3818 "Read only property."
3819 (dbus-get-property bus systemd-dbus-service path
3820 systemd-dbus-interface-swap "TasksAccounting"))
3821
3822 (defun systemd-swap-TasksMax (bus path)
3823 "Read only property."
3824 (dbus-get-property bus systemd-dbus-service path
3825 systemd-dbus-interface-swap "TasksMax"))
3826
3827 (defun systemd-swap-Environment (bus path)
3828 "Read only property."
3829 (dbus-get-property bus systemd-dbus-service path
3830 systemd-dbus-interface-swap "Environment"))
3831
3832 (defun systemd-swap-EnvironmentFiles (bus path)
3833 "Read only property."
3834 (dbus-get-property bus systemd-dbus-service path
3835 systemd-dbus-interface-swap "EnvironmentFiles"))
3836
3837 (defun systemd-swap-PassEnvironment (bus path)
3838 "Read only property."
3839 (dbus-get-property bus systemd-dbus-service path
3840 systemd-dbus-interface-swap "PassEnvironment"))
3841
3842 (defun systemd-swap-UMask (bus path)
3843 "Read only property."
3844 (dbus-get-property bus systemd-dbus-service path
3845 systemd-dbus-interface-swap "UMask"))
3846
3847 (defun systemd-swap-LimitCPU (bus path)
3848 "Read only property."
3849 (dbus-get-property bus systemd-dbus-service path
3850 systemd-dbus-interface-swap "LimitCPU"))
3851
3852 (defun systemd-swap-LimitCPUSoft (bus path)
3853 "Read only property."
3854 (dbus-get-property bus systemd-dbus-service path
3855 systemd-dbus-interface-swap "LimitCPUSoft"))
3856
3857 (defun systemd-swap-LimitFSIZE (bus path)
3858 "Read only property."
3859 (dbus-get-property bus systemd-dbus-service path
3860 systemd-dbus-interface-swap "LimitFSIZE"))
3861
3862 (defun systemd-swap-LimitFSIZESoft (bus path)
3863 "Read only property."
3864 (dbus-get-property bus systemd-dbus-service path
3865 systemd-dbus-interface-swap "LimitFSIZESoft"))
3866
3867 (defun systemd-swap-LimitDATA (bus path)
3868 "Read only property."
3869 (dbus-get-property bus systemd-dbus-service path
3870 systemd-dbus-interface-swap "LimitDATA"))
3871
3872 (defun systemd-swap-LimitDATASoft (bus path)
3873 "Read only property."
3874 (dbus-get-property bus systemd-dbus-service path
3875 systemd-dbus-interface-swap "LimitDATASoft"))
3876
3877 (defun systemd-swap-LimitSTACK (bus path)
3878 "Read only property."
3879 (dbus-get-property bus systemd-dbus-service path
3880 systemd-dbus-interface-swap "LimitSTACK"))
3881
3882 (defun systemd-swap-LimitSTACKSoft (bus path)
3883 "Read only property."
3884 (dbus-get-property bus systemd-dbus-service path
3885 systemd-dbus-interface-swap "LimitSTACKSoft"))
3886
3887 (defun systemd-swap-LimitCORE (bus path)
3888 "Read only property."
3889 (dbus-get-property bus systemd-dbus-service path
3890 systemd-dbus-interface-swap "LimitCORE"))
3891
3892 (defun systemd-swap-LimitCORESoft (bus path)
3893 "Read only property."
3894 (dbus-get-property bus systemd-dbus-service path
3895 systemd-dbus-interface-swap "LimitCORESoft"))
3896
3897 (defun systemd-swap-LimitRSS (bus path)
3898 "Read only property."
3899 (dbus-get-property bus systemd-dbus-service path
3900 systemd-dbus-interface-swap "LimitRSS"))
3901
3902 (defun systemd-swap-LimitRSSSoft (bus path)
3903 "Read only property."
3904 (dbus-get-property bus systemd-dbus-service path
3905 systemd-dbus-interface-swap "LimitRSSSoft"))
3906
3907 (defun systemd-swap-LimitNOFILE (bus path)
3908 "Read only property."
3909 (dbus-get-property bus systemd-dbus-service path
3910 systemd-dbus-interface-swap "LimitNOFILE"))
3911
3912 (defun systemd-swap-LimitNOFILESoft (bus path)
3913 "Read only property."
3914 (dbus-get-property bus systemd-dbus-service path
3915 systemd-dbus-interface-swap "LimitNOFILESoft"))
3916
3917 (defun systemd-swap-LimitAS (bus path)
3918 "Read only property."
3919 (dbus-get-property bus systemd-dbus-service path
3920 systemd-dbus-interface-swap "LimitAS"))
3921
3922 (defun systemd-swap-LimitASSoft (bus path)
3923 "Read only property."
3924 (dbus-get-property bus systemd-dbus-service path
3925 systemd-dbus-interface-swap "LimitASSoft"))
3926
3927 (defun systemd-swap-LimitNPROC (bus path)
3928 "Read only property."
3929 (dbus-get-property bus systemd-dbus-service path
3930 systemd-dbus-interface-swap "LimitNPROC"))
3931
3932 (defun systemd-swap-LimitNPROCSoft (bus path)
3933 "Read only property."
3934 (dbus-get-property bus systemd-dbus-service path
3935 systemd-dbus-interface-swap "LimitNPROCSoft"))
3936
3937 (defun systemd-swap-LimitMEMLOCK (bus path)
3938 "Read only property."
3939 (dbus-get-property bus systemd-dbus-service path
3940 systemd-dbus-interface-swap "LimitMEMLOCK"))
3941
3942 (defun systemd-swap-LimitMEMLOCKSoft (bus path)
3943 "Read only property."
3944 (dbus-get-property bus systemd-dbus-service path
3945 systemd-dbus-interface-swap "LimitMEMLOCKSoft"))
3946
3947 (defun systemd-swap-LimitLOCKS (bus path)
3948 "Read only property."
3949 (dbus-get-property bus systemd-dbus-service path
3950 systemd-dbus-interface-swap "LimitLOCKS"))
3951
3952 (defun systemd-swap-LimitLOCKSSoft (bus path)
3953 "Read only property."
3954 (dbus-get-property bus systemd-dbus-service path
3955 systemd-dbus-interface-swap "LimitLOCKSSoft"))
3956
3957 (defun systemd-swap-LimitSIGPENDING (bus path)
3958 "Read only property."
3959 (dbus-get-property bus systemd-dbus-service path
3960 systemd-dbus-interface-swap "LimitSIGPENDING"))
3961
3962 (defun systemd-swap-LimitSIGPENDINGSoft (bus path)
3963 "Read only property."
3964 (dbus-get-property bus systemd-dbus-service path
3965 systemd-dbus-interface-swap "LimitSIGPENDINGSoft"))
3966
3967 (defun systemd-swap-LimitMSGQUEUE (bus path)
3968 "Read only property."
3969 (dbus-get-property bus systemd-dbus-service path
3970 systemd-dbus-interface-swap "LimitMSGQUEUE"))
3971
3972 (defun systemd-swap-LimitMSGQUEUESoft (bus path)
3973 "Read only property."
3974 (dbus-get-property bus systemd-dbus-service path
3975 systemd-dbus-interface-swap "LimitMSGQUEUESoft"))
3976
3977 (defun systemd-swap-LimitNICE (bus path)
3978 "Read only property."
3979 (dbus-get-property bus systemd-dbus-service path
3980 systemd-dbus-interface-swap "LimitNICE"))
3981
3982 (defun systemd-swap-LimitNICESoft (bus path)
3983 "Read only property."
3984 (dbus-get-property bus systemd-dbus-service path
3985 systemd-dbus-interface-swap "LimitNICESoft"))
3986
3987 (defun systemd-swap-LimitRTPRIO (bus path)
3988 "Read only property."
3989 (dbus-get-property bus systemd-dbus-service path
3990 systemd-dbus-interface-swap "LimitRTPRIO"))
3991
3992 (defun systemd-swap-LimitRTPRIOSoft (bus path)
3993 "Read only property."
3994 (dbus-get-property bus systemd-dbus-service path
3995 systemd-dbus-interface-swap "LimitRTPRIOSoft"))
3996
3997 (defun systemd-swap-LimitRTTIME (bus path)
3998 "Read only property."
3999 (dbus-get-property bus systemd-dbus-service path
4000 systemd-dbus-interface-swap "LimitRTTIME"))
4001
4002 (defun systemd-swap-LimitRTTIMESoft (bus path)
4003 "Read only property."
4004 (dbus-get-property bus systemd-dbus-service path
4005 systemd-dbus-interface-swap "LimitRTTIMESoft"))
4006
4007 (defun systemd-swap-WorkingDirectory (bus path)
4008 "Read only property."
4009 (dbus-get-property bus systemd-dbus-service path
4010 systemd-dbus-interface-swap "WorkingDirectory"))
4011
4012 (defun systemd-swap-RootDirectory (bus path)
4013 "Read only property."
4014 (dbus-get-property bus systemd-dbus-service path
4015 systemd-dbus-interface-swap "RootDirectory"))
4016
4017 (defun systemd-swap-OOMScoreAdjust (bus path)
4018 "Read only property."
4019 (dbus-get-property bus systemd-dbus-service path
4020 systemd-dbus-interface-swap "OOMScoreAdjust"))
4021
4022 (defun systemd-swap-Nice (bus path)
4023 "Read only property."
4024 (dbus-get-property bus systemd-dbus-service path
4025 systemd-dbus-interface-swap "Nice"))
4026
4027 (defun systemd-swap-IOScheduling (bus path)
4028 "Read only property."
4029 (dbus-get-property bus systemd-dbus-service path
4030 systemd-dbus-interface-swap "IOScheduling"))
4031
4032 (defun systemd-swap-CPUSchedulingPolicy (bus path)
4033 "Read only property."
4034 (dbus-get-property bus systemd-dbus-service path
4035 systemd-dbus-interface-swap "CPUSchedulingPolicy"))
4036
4037 (defun systemd-swap-CPUSchedulingPriority (bus path)
4038 "Read only property."
4039 (dbus-get-property bus systemd-dbus-service path
4040 systemd-dbus-interface-swap "CPUSchedulingPriority"))
4041
4042 (defun systemd-swap-CPUAffinity (bus path)
4043 "Read only property."
4044 (dbus-get-property bus systemd-dbus-service path
4045 systemd-dbus-interface-swap "CPUAffinity"))
4046
4047 (defun systemd-swap-TimerSlackNSec (bus path)
4048 "Read only property."
4049 (dbus-get-property bus systemd-dbus-service path
4050 systemd-dbus-interface-swap "TimerSlackNSec"))
4051
4052 (defun systemd-swap-CPUSchedulingResetOnFork (bus path)
4053 "Read only property."
4054 (dbus-get-property bus systemd-dbus-service path
4055 systemd-dbus-interface-swap "CPUSchedulingResetOnFork"))
4056
4057 (defun systemd-swap-NonBlocking (bus path)
4058 "Read only property."
4059 (dbus-get-property bus systemd-dbus-service path
4060 systemd-dbus-interface-swap "NonBlocking"))
4061
4062 (defun systemd-swap-StandardInput (bus path)
4063 "Read only property."
4064 (dbus-get-property bus systemd-dbus-service path
4065 systemd-dbus-interface-swap "StandardInput"))
4066
4067 (defun systemd-swap-StandardOutput (bus path)
4068 "Read only property."
4069 (dbus-get-property bus systemd-dbus-service path
4070 systemd-dbus-interface-swap "StandardOutput"))
4071
4072 (defun systemd-swap-StandardError (bus path)
4073 "Read only property."
4074 (dbus-get-property bus systemd-dbus-service path
4075 systemd-dbus-interface-swap "StandardError"))
4076
4077 (defun systemd-swap-TTYPath (bus path)
4078 "Read only property."
4079 (dbus-get-property bus systemd-dbus-service path
4080 systemd-dbus-interface-swap "TTYPath"))
4081
4082 (defun systemd-swap-TTYReset (bus path)
4083 "Read only property."
4084 (dbus-get-property bus systemd-dbus-service path
4085 systemd-dbus-interface-swap "TTYReset"))
4086
4087 (defun systemd-swap-TTYVHangup (bus path)
4088 "Read only property."
4089 (dbus-get-property bus systemd-dbus-service path
4090 systemd-dbus-interface-swap "TTYVHangup"))
4091
4092 (defun systemd-swap-TTYVTDisallocate (bus path)
4093 "Read only property."
4094 (dbus-get-property bus systemd-dbus-service path
4095 systemd-dbus-interface-swap "TTYVTDisallocate"))
4096
4097 (defun systemd-swap-SyslogPriority (bus path)
4098 "Read only property."
4099 (dbus-get-property bus systemd-dbus-service path
4100 systemd-dbus-interface-swap "SyslogPriority"))
4101
4102 (defun systemd-swap-SyslogIdentifier (bus path)
4103 "Read only property."
4104 (dbus-get-property bus systemd-dbus-service path
4105 systemd-dbus-interface-swap "SyslogIdentifier"))
4106
4107 (defun systemd-swap-SyslogLevelPrefix (bus path)
4108 "Read only property."
4109 (dbus-get-property bus systemd-dbus-service path
4110 systemd-dbus-interface-swap "SyslogLevelPrefix"))
4111
4112 (defun systemd-swap-SyslogLevel (bus path)
4113 "Read only property."
4114 (dbus-get-property bus systemd-dbus-service path
4115 systemd-dbus-interface-swap "SyslogLevel"))
4116
4117 (defun systemd-swap-SyslogFacility (bus path)
4118 "Read only property."
4119 (dbus-get-property bus systemd-dbus-service path
4120 systemd-dbus-interface-swap "SyslogFacility"))
4121
4122 (defun systemd-swap-SecureBits (bus path)
4123 "Read only property."
4124 (dbus-get-property bus systemd-dbus-service path
4125 systemd-dbus-interface-swap "SecureBits"))
4126
4127 (defun systemd-swap-CapabilityBoundingSet (bus path)
4128 "Read only property."
4129 (dbus-get-property bus systemd-dbus-service path
4130 systemd-dbus-interface-swap "CapabilityBoundingSet"))
4131
4132 (defun systemd-swap-AmbientCapabilities (bus path)
4133 "Read only property."
4134 (dbus-get-property bus systemd-dbus-service path
4135 systemd-dbus-interface-swap "AmbientCapabilities"))
4136
4137 (defun systemd-swap-User (bus path)
4138 "Read only property."
4139 (dbus-get-property bus systemd-dbus-service path
4140 systemd-dbus-interface-swap "User"))
4141
4142 (defun systemd-swap-Group (bus path)
4143 "Read only property."
4144 (dbus-get-property bus systemd-dbus-service path
4145 systemd-dbus-interface-swap "Group"))
4146
4147 (defun systemd-swap-SupplementaryGroups (bus path)
4148 "Read only property."
4149 (dbus-get-property bus systemd-dbus-service path
4150 systemd-dbus-interface-swap "SupplementaryGroups"))
4151
4152 (defun systemd-swap-PAMName (bus path)
4153 "Read only property."
4154 (dbus-get-property bus systemd-dbus-service path
4155 systemd-dbus-interface-swap "PAMName"))
4156
4157 (defun systemd-swap-ReadWriteDirectories (bus path)
4158 "Read only property."
4159 (dbus-get-property bus systemd-dbus-service path
4160 systemd-dbus-interface-swap "ReadWriteDirectories"))
4161
4162 (defun systemd-swap-ReadOnlyDirectories (bus path)
4163 "Read only property."
4164 (dbus-get-property bus systemd-dbus-service path
4165 systemd-dbus-interface-swap "ReadOnlyDirectories"))
4166
4167 (defun systemd-swap-InaccessibleDirectories (bus path)
4168 "Read only property."
4169 (dbus-get-property bus systemd-dbus-service path
4170 systemd-dbus-interface-swap "InaccessibleDirectories"))
4171
4172 (defun systemd-swap-MountFlags (bus path)
4173 "Read only property."
4174 (dbus-get-property bus systemd-dbus-service path
4175 systemd-dbus-interface-swap "MountFlags"))
4176
4177 (defun systemd-swap-PrivateTmp (bus path)
4178 "Read only property."
4179 (dbus-get-property bus systemd-dbus-service path
4180 systemd-dbus-interface-swap "PrivateTmp"))
4181
4182 (defun systemd-swap-PrivateNetwork (bus path)
4183 "Read only property."
4184 (dbus-get-property bus systemd-dbus-service path
4185 systemd-dbus-interface-swap "PrivateNetwork"))
4186
4187 (defun systemd-swap-PrivateDevices (bus path)
4188 "Read only property."
4189 (dbus-get-property bus systemd-dbus-service path
4190 systemd-dbus-interface-swap "PrivateDevices"))
4191
4192 (defun systemd-swap-ProtectHome (bus path)
4193 "Read only property."
4194 (dbus-get-property bus systemd-dbus-service path
4195 systemd-dbus-interface-swap "ProtectHome"))
4196
4197 (defun systemd-swap-ProtectSystem (bus path)
4198 "Read only property."
4199 (dbus-get-property bus systemd-dbus-service path
4200 systemd-dbus-interface-swap "ProtectSystem"))
4201
4202 (defun systemd-swap-SameProcessGroup (bus path)
4203 "Read only property."
4204 (dbus-get-property bus systemd-dbus-service path
4205 systemd-dbus-interface-swap "SameProcessGroup"))
4206
4207 (defun systemd-swap-UtmpIdentifier (bus path)
4208 "Read only property."
4209 (dbus-get-property bus systemd-dbus-service path
4210 systemd-dbus-interface-swap "UtmpIdentifier"))
4211
4212 (defun systemd-swap-UtmpMode (bus path)
4213 "Read only property."
4214 (dbus-get-property bus systemd-dbus-service path
4215 systemd-dbus-interface-swap "UtmpMode"))
4216
4217 (defun systemd-swap-SELinuxContext (bus path)
4218 "Read only property."
4219 (dbus-get-property bus systemd-dbus-service path
4220 systemd-dbus-interface-swap "SELinuxContext"))
4221
4222 (defun systemd-swap-AppArmorProfile (bus path)
4223 "Read only property."
4224 (dbus-get-property bus systemd-dbus-service path
4225 systemd-dbus-interface-swap "AppArmorProfile"))
4226
4227 (defun systemd-swap-SmackProcessLabel (bus path)
4228 "Read only property."
4229 (dbus-get-property bus systemd-dbus-service path
4230 systemd-dbus-interface-swap "SmackProcessLabel"))
4231
4232 (defun systemd-swap-IgnoreSIGPIPE (bus path)
4233 "Read only property."
4234 (dbus-get-property bus systemd-dbus-service path
4235 systemd-dbus-interface-swap "IgnoreSIGPIPE"))
4236
4237 (defun systemd-swap-NoNewPrivileges (bus path)
4238 "Read only property."
4239 (dbus-get-property bus systemd-dbus-service path
4240 systemd-dbus-interface-swap "NoNewPrivileges"))
4241
4242 (defun systemd-swap-SystemCallFilter (bus path)
4243 "Read only property."
4244 (dbus-get-property bus systemd-dbus-service path
4245 systemd-dbus-interface-swap "SystemCallFilter"))
4246
4247 (defun systemd-swap-SystemCallArchitectures (bus path)
4248 "Read only property."
4249 (dbus-get-property bus systemd-dbus-service path
4250 systemd-dbus-interface-swap "SystemCallArchitectures"))
4251
4252 (defun systemd-swap-SystemCallErrorNumber (bus path)
4253 "Read only property."
4254 (dbus-get-property bus systemd-dbus-service path
4255 systemd-dbus-interface-swap "SystemCallErrorNumber"))
4256
4257 (defun systemd-swap-Personality (bus path)
4258 "Read only property."
4259 (dbus-get-property bus systemd-dbus-service path
4260 systemd-dbus-interface-swap "Personality"))
4261
4262 (defun systemd-swap-RestrictAddressFamilies (bus path)
4263 "Read only property."
4264 (dbus-get-property bus systemd-dbus-service path
4265 systemd-dbus-interface-swap "RestrictAddressFamilies"))
4266
4267 (defun systemd-swap-RuntimeDirectoryMode (bus path)
4268 "Read only property."
4269 (dbus-get-property bus systemd-dbus-service path
4270 systemd-dbus-interface-swap "RuntimeDirectoryMode"))
4271
4272 (defun systemd-swap-RuntimeDirectory (bus path)
4273 "Read only property."
4274 (dbus-get-property bus systemd-dbus-service path
4275 systemd-dbus-interface-swap "RuntimeDirectory"))
4276
4277 (defun systemd-swap-KillMode (bus path)
4278 "Read only property."
4279 (dbus-get-property bus systemd-dbus-service path
4280 systemd-dbus-interface-swap "KillMode"))
4281
4282 (defun systemd-swap-KillSignal (bus path)
4283 "Read only property."
4284 (dbus-get-property bus systemd-dbus-service path
4285 systemd-dbus-interface-swap "KillSignal"))
4286
4287 (defun systemd-swap-SendSIGKILL (bus path)
4288 "Read only property."
4289 (dbus-get-property bus systemd-dbus-service path
4290 systemd-dbus-interface-swap "SendSIGKILL"))
4291
4292 (defun systemd-swap-SendSIGHUP (bus path)
4293 "Read only property."
4294 (dbus-get-property bus systemd-dbus-service path
4295 systemd-dbus-interface-swap "SendSIGHUP"))
4296
4297 ;;; org.freedesktop.systemd1.Target
4298
4299 (defconst systemd-dbus-interface-target "org.freedesktop.systemd1.Target")
4300
4301 ;;; org.freedesktop.systemd1.Timer
4302
4303 (defconst systemd-dbus-interface-timer "org.freedesktop.systemd1.Timer")
4304
4305 (defun systemd-timer-Unit (bus path)
4306 "Read only property."
4307 (dbus-get-property bus systemd-dbus-service path
4308 systemd-dbus-interface-timer "Unit"))
4309
4310 (defun systemd-timer-TimersMonotonic (bus path)
4311 "Read only property."
4312 (dbus-get-property bus systemd-dbus-service path
4313 systemd-dbus-interface-timer "TimersMonotonic"))
4314
4315 (defun systemd-timer-TimersCalendar (bus path)
4316 "Read only property."
4317 (dbus-get-property bus systemd-dbus-service path
4318 systemd-dbus-interface-timer "TimersCalendar"))
4319
4320 (defun systemd-timer-NextElapseUSecRealtime (bus path)
4321 "Read only property."
4322 (dbus-get-property bus systemd-dbus-service path
4323 systemd-dbus-interface-timer "NextElapseUSecRealtime"))
4324
4325 (defun systemd-timer-NextElapseUSecMonotonic (bus path)
4326 "Read only property."
4327 (dbus-get-property bus systemd-dbus-service path
4328 systemd-dbus-interface-timer "NextElapseUSecMonotonic"))
4329
4330 (defun systemd-timer-LastTriggerUSec (bus path)
4331 "Read only property."
4332 (dbus-get-property bus systemd-dbus-service path
4333 systemd-dbus-interface-timer "LastTriggerUSec"))
4334
4335 (defun systemd-timer-LastTriggerUSecMonotonic (bus path)
4336 "Read only property."
4337 (dbus-get-property bus systemd-dbus-service path
4338 systemd-dbus-interface-timer "LastTriggerUSecMonotonic"))
4339
4340 (defun systemd-timer-Result (bus path)
4341 "Read only property."
4342 (dbus-get-property bus systemd-dbus-service path
4343 systemd-dbus-interface-timer "Result"))
4344
4345 (defun systemd-timer-AccuracyUSec (bus path)
4346 "Read only property."
4347 (dbus-get-property bus systemd-dbus-service path
4348 systemd-dbus-interface-timer "AccuracyUSec"))
4349
4350 (defun systemd-timer-RandomizedDelayUSec (bus path)
4351 "Read only property."
4352 (dbus-get-property bus systemd-dbus-service path
4353 systemd-dbus-interface-timer "RandomizedDelayUSec"))
4354
4355 (defun systemd-timer-Persistent (bus path)
4356 "Read only property."
4357 (dbus-get-property bus systemd-dbus-service path
4358 systemd-dbus-interface-timer "Persistent"))
4359
4360 (defun systemd-timer-WakeSystem (bus path)
4361 "Read only property."
4362 (dbus-get-property bus systemd-dbus-service path
4363 systemd-dbus-interface-timer "WakeSystem"))
4364
4365 (defun systemd-timer-RemainAfterElapse (bus path)
4366 "Read only property."
4367 (dbus-get-property bus systemd-dbus-service path
4368 systemd-dbus-interface-timer "RemainAfterElapse"))
4369
4370 ;;; org.freedesktop.systemd1.Unit
4371
4372 (defconst systemd-dbus-interface-unit "org.freedesktop.systemd1.Unit")
4373
4374 (defun systemd-unit-Id (bus path)
4375 "Read only property."
4376 (dbus-get-property bus systemd-dbus-service path
4377 systemd-dbus-interface-unit "Id"))
4378
4379 (defun systemd-unit-Names (bus path)
4380 "Read only property."
4381 (dbus-get-property bus systemd-dbus-service path
4382 systemd-dbus-interface-unit "Names"))
4383
4384 (defun systemd-unit-Following (bus path)
4385 "Read only property."
4386 (dbus-get-property bus systemd-dbus-service path
4387 systemd-dbus-interface-unit "Following"))
4388
4389 (defun systemd-unit-Requires (bus path)
4390 "Read only property."
4391 (dbus-get-property bus systemd-dbus-service path
4392 systemd-dbus-interface-unit "Requires"))
4393
4394 (defun systemd-unit-Requisite (bus path)
4395 "Read only property."
4396 (dbus-get-property bus systemd-dbus-service path
4397 systemd-dbus-interface-unit "Requisite"))
4398
4399 (defun systemd-unit-Wants (bus path)
4400 "Read only property."
4401 (dbus-get-property bus systemd-dbus-service path
4402 systemd-dbus-interface-unit "Wants"))
4403
4404 (defun systemd-unit-BindsTo (bus path)
4405 "Read only property."
4406 (dbus-get-property bus systemd-dbus-service path
4407 systemd-dbus-interface-unit "BindsTo"))
4408
4409 (defun systemd-unit-PartOf (bus path)
4410 "Read only property."
4411 (dbus-get-property bus systemd-dbus-service path
4412 systemd-dbus-interface-unit "PartOf"))
4413
4414 (defun systemd-unit-RequiredBy (bus path)
4415 "Read only property."
4416 (dbus-get-property bus systemd-dbus-service path
4417 systemd-dbus-interface-unit "RequiredBy"))
4418
4419 (defun systemd-unit-RequisiteOf (bus path)
4420 "Read only property."
4421 (dbus-get-property bus systemd-dbus-service path
4422 systemd-dbus-interface-unit "RequisiteOf"))
4423
4424 (defun systemd-unit-WantedBy (bus path)
4425 "Read only property."
4426 (dbus-get-property bus systemd-dbus-service path
4427 systemd-dbus-interface-unit "WantedBy"))
4428
4429 (defun systemd-unit-BoundBy (bus path)
4430 "Read only property."
4431 (dbus-get-property bus systemd-dbus-service path
4432 systemd-dbus-interface-unit "BoundBy"))
4433
4434 (defun systemd-unit-ConsistsOf (bus path)
4435 "Read only property."
4436 (dbus-get-property bus systemd-dbus-service path
4437 systemd-dbus-interface-unit "ConsistsOf"))
4438
4439 (defun systemd-unit-Conflicts (bus path)
4440 "Read only property."
4441 (dbus-get-property bus systemd-dbus-service path
4442 systemd-dbus-interface-unit "Conflicts"))
4443
4444 (defun systemd-unit-ConflictedBy (bus path)
4445 "Read only property."
4446 (dbus-get-property bus systemd-dbus-service path
4447 systemd-dbus-interface-unit "ConflictedBy"))
4448
4449 (defun systemd-unit-Before (bus path)
4450 "Read only property."
4451 (dbus-get-property bus systemd-dbus-service path
4452 systemd-dbus-interface-unit "Before"))
4453
4454 (defun systemd-unit-After (bus path)
4455 "Read only property."
4456 (dbus-get-property bus systemd-dbus-service path
4457 systemd-dbus-interface-unit "After"))
4458
4459 (defun systemd-unit-OnFailure (bus path)
4460 "Read only property."
4461 (dbus-get-property bus systemd-dbus-service path
4462 systemd-dbus-interface-unit "OnFailure"))
4463
4464 (defun systemd-unit-Triggers (bus path)
4465 "Read only property."
4466 (dbus-get-property bus systemd-dbus-service path
4467 systemd-dbus-interface-unit "Triggers"))
4468
4469 (defun systemd-unit-TriggeredBy (bus path)
4470 "Read only property."
4471 (dbus-get-property bus systemd-dbus-service path
4472 systemd-dbus-interface-unit "TriggeredBy"))
4473
4474 (defun systemd-unit-PropagatesReloadTo (bus path)
4475 "Read only property."
4476 (dbus-get-property bus systemd-dbus-service path
4477 systemd-dbus-interface-unit "PropagatesReloadTo"))
4478
4479 (defun systemd-unit-ReloadPropagatedFrom (bus path)
4480 "Read only property."
4481 (dbus-get-property bus systemd-dbus-service path
4482 systemd-dbus-interface-unit "ReloadPropagatedFrom"))
4483
4484 (defun systemd-unit-JoinsNamespaceOf (bus path)
4485 "Read only property."
4486 (dbus-get-property bus systemd-dbus-service path
4487 systemd-dbus-interface-unit "JoinsNamespaceOf"))
4488
4489 (defun systemd-unit-RequiresMountsFor (bus path)
4490 "Read only property."
4491 (dbus-get-property bus systemd-dbus-service path
4492 systemd-dbus-interface-unit "RequiresMountsFor"))
4493
4494 (defun systemd-unit-Documentation (bus path)
4495 "Read only property."
4496 (dbus-get-property bus systemd-dbus-service path
4497 systemd-dbus-interface-unit "Documentation"))
4498
4499 (defun systemd-unit-Description (bus path)
4500 "Read only property."
4501 (dbus-get-property bus systemd-dbus-service path
4502 systemd-dbus-interface-unit "Description"))
4503
4504 (defun systemd-unit-LoadState (bus path)
4505 "Read only property."
4506 (dbus-get-property bus systemd-dbus-service path
4507 systemd-dbus-interface-unit "LoadState"))
4508
4509 (defun systemd-unit-ActiveState (bus path)
4510 "Read only property."
4511 (dbus-get-property bus systemd-dbus-service path
4512 systemd-dbus-interface-unit "ActiveState"))
4513
4514 (defun systemd-unit-SubState (bus path)
4515 "Read only property."
4516 (dbus-get-property bus systemd-dbus-service path
4517 systemd-dbus-interface-unit "SubState"))
4518
4519 (defun systemd-unit-FragmentPath (bus path)
4520 "Read only property."
4521 (dbus-get-property bus systemd-dbus-service path
4522 systemd-dbus-interface-unit "FragmentPath"))
4523
4524 (defun systemd-unit-SourcePath (bus path)
4525 "Read only property."
4526 (dbus-get-property bus systemd-dbus-service path
4527 systemd-dbus-interface-unit "SourcePath"))
4528
4529 (defun systemd-unit-DropInPaths (bus path)
4530 "Read only property."
4531 (dbus-get-property bus systemd-dbus-service path
4532 systemd-dbus-interface-unit "DropInPaths"))
4533
4534 (defun systemd-unit-UnitFileState (bus path)
4535 "Read only property."
4536 (dbus-get-property bus systemd-dbus-service path
4537 systemd-dbus-interface-unit "UnitFileState"))
4538
4539 (defun systemd-unit-UnitFilePreset (bus path)
4540 "Read only property."
4541 (dbus-get-property bus systemd-dbus-service path
4542 systemd-dbus-interface-unit "UnitFilePreset"))
4543
4544 (defun systemd-unit-StateChangeTimestamp (bus path)
4545 "Read only property."
4546 (dbus-get-property bus systemd-dbus-service path
4547 systemd-dbus-interface-unit "StateChangeTimestamp"))
4548
4549 (defun systemd-unit-StateChangeTimestampMonotonic (bus path)
4550 "Read only property."
4551 (dbus-get-property bus systemd-dbus-service path
4552 systemd-dbus-interface-unit "StateChangeTimestampMonotonic"))
4553
4554 (defun systemd-unit-InactiveExitTimestamp (bus path)
4555 "Read only property."
4556 (dbus-get-property bus systemd-dbus-service path
4557 systemd-dbus-interface-unit "InactiveExitTimestamp"))
4558
4559 (defun systemd-unit-InactiveExitTimestampMonotonic (bus path)
4560 "Read only property."
4561 (dbus-get-property bus systemd-dbus-service path
4562 systemd-dbus-interface-unit "InactiveExitTimestampMonotonic"))
4563
4564 (defun systemd-unit-ActiveEnterTimestamp (bus path)
4565 "Read only property."
4566 (dbus-get-property bus systemd-dbus-service path
4567 systemd-dbus-interface-unit "ActiveEnterTimestamp"))
4568
4569 (defun systemd-unit-ActiveEnterTimestampMonotonic (bus path)
4570 "Read only property."
4571 (dbus-get-property bus systemd-dbus-service path
4572 systemd-dbus-interface-unit "ActiveEnterTimestampMonotonic"))
4573
4574 (defun systemd-unit-ActiveExitTimestamp (bus path)
4575 "Read only property."
4576 (dbus-get-property bus systemd-dbus-service path
4577 systemd-dbus-interface-unit "ActiveExitTimestamp"))
4578
4579 (defun systemd-unit-ActiveExitTimestampMonotonic (bus path)
4580 "Read only property."
4581 (dbus-get-property bus systemd-dbus-service path
4582 systemd-dbus-interface-unit "ActiveExitTimestampMonotonic"))
4583
4584 (defun systemd-unit-InactiveEnterTimestamp (bus path)
4585 "Read only property."
4586 (dbus-get-property bus systemd-dbus-service path
4587 systemd-dbus-interface-unit "InactiveEnterTimestamp"))
4588
4589 (defun systemd-unit-InactiveEnterTimestampMonotonic (bus path)
4590 "Read only property."
4591 (dbus-get-property bus systemd-dbus-service path
4592 systemd-dbus-interface-unit "InactiveEnterTimestampMonotonic"))
4593
4594 (defun systemd-unit-CanStart (bus path)
4595 "Read only property."
4596 (dbus-get-property bus systemd-dbus-service path
4597 systemd-dbus-interface-unit "CanStart"))
4598
4599 (defun systemd-unit-CanStop (bus path)
4600 "Read only property."
4601 (dbus-get-property bus systemd-dbus-service path
4602 systemd-dbus-interface-unit "CanStop"))
4603
4604 (defun systemd-unit-CanReload (bus path)
4605 "Read only property."
4606 (dbus-get-property bus systemd-dbus-service path
4607 systemd-dbus-interface-unit "CanReload"))
4608
4609 (defun systemd-unit-CanIsolate (bus path)
4610 "Read only property."
4611 (dbus-get-property bus systemd-dbus-service path
4612 systemd-dbus-interface-unit "CanIsolate"))
4613
4614 (defun systemd-unit-Job (bus path)
4615 "Read only property."
4616 (dbus-get-property bus systemd-dbus-service path
4617 systemd-dbus-interface-unit "Job"))
4618
4619 (defun systemd-unit-StopWhenUnneeded (bus path)
4620 "Read only property."
4621 (dbus-get-property bus systemd-dbus-service path
4622 systemd-dbus-interface-unit "StopWhenUnneeded"))
4623
4624 (defun systemd-unit-RefuseManualStart (bus path)
4625 "Read only property."
4626 (dbus-get-property bus systemd-dbus-service path
4627 systemd-dbus-interface-unit "RefuseManualStart"))
4628
4629 (defun systemd-unit-RefuseManualStop (bus path)
4630 "Read only property."
4631 (dbus-get-property bus systemd-dbus-service path
4632 systemd-dbus-interface-unit "RefuseManualStop"))
4633
4634 (defun systemd-unit-AllowIsolate (bus path)
4635 "Read only property."
4636 (dbus-get-property bus systemd-dbus-service path
4637 systemd-dbus-interface-unit "AllowIsolate"))
4638
4639 (defun systemd-unit-DefaultDependencies (bus path)
4640 "Read only property."
4641 (dbus-get-property bus systemd-dbus-service path
4642 systemd-dbus-interface-unit "DefaultDependencies"))
4643
4644 (defun systemd-unit-OnFailureJobMode (bus path)
4645 "Read only property."
4646 (dbus-get-property bus systemd-dbus-service path
4647 systemd-dbus-interface-unit "OnFailureJobMode"))
4648
4649 (defun systemd-unit-IgnoreOnIsolate (bus path)
4650 "Read only property."
4651 (dbus-get-property bus systemd-dbus-service path
4652 systemd-dbus-interface-unit "IgnoreOnIsolate"))
4653
4654 (defun systemd-unit-NeedDaemonReload (bus path)
4655 "Read only property."
4656 (dbus-get-property bus systemd-dbus-service path
4657 systemd-dbus-interface-unit "NeedDaemonReload"))
4658
4659 (defun systemd-unit-JobTimeoutUSec (bus path)
4660 "Read only property."
4661 (dbus-get-property bus systemd-dbus-service path
4662 systemd-dbus-interface-unit "JobTimeoutUSec"))
4663
4664 (defun systemd-unit-JobTimeoutAction (bus path)
4665 "Read only property."
4666 (dbus-get-property bus systemd-dbus-service path
4667 systemd-dbus-interface-unit "JobTimeoutAction"))
4668
4669 (defun systemd-unit-JobTimeoutRebootArgument (bus path)
4670 "Read only property."
4671 (dbus-get-property bus systemd-dbus-service path
4672 systemd-dbus-interface-unit "JobTimeoutRebootArgument"))
4673
4674 (defun systemd-unit-ConditionResult (bus path)
4675 "Read only property."
4676 (dbus-get-property bus systemd-dbus-service path
4677 systemd-dbus-interface-unit "ConditionResult"))
4678
4679 (defun systemd-unit-AssertResult (bus path)
4680 "Read only property."
4681 (dbus-get-property bus systemd-dbus-service path
4682 systemd-dbus-interface-unit "AssertResult"))
4683
4684 (defun systemd-unit-ConditionTimestamp (bus path)
4685 "Read only property."
4686 (dbus-get-property bus systemd-dbus-service path
4687 systemd-dbus-interface-unit "ConditionTimestamp"))
4688
4689 (defun systemd-unit-ConditionTimestampMonotonic (bus path)
4690 "Read only property."
4691 (dbus-get-property bus systemd-dbus-service path
4692 systemd-dbus-interface-unit "ConditionTimestampMonotonic"))
4693
4694 (defun systemd-unit-AssertTimestamp (bus path)
4695 "Read only property."
4696 (dbus-get-property bus systemd-dbus-service path
4697 systemd-dbus-interface-unit "AssertTimestamp"))
4698
4699 (defun systemd-unit-AssertTimestampMonotonic (bus path)
4700 "Read only property."
4701 (dbus-get-property bus systemd-dbus-service path
4702 systemd-dbus-interface-unit "AssertTimestampMonotonic"))
4703
4704 (defun systemd-unit-Conditions (bus path)
4705 "Read only property."
4706 (dbus-get-property bus systemd-dbus-service path
4707 systemd-dbus-interface-unit "Conditions"))
4708
4709 (defun systemd-unit-Asserts (bus path)
4710 "Read only property."
4711 (dbus-get-property bus systemd-dbus-service path
4712 systemd-dbus-interface-unit "Asserts"))
4713
4714 (defun systemd-unit-LoadError (bus path)
4715 "Read only property."
4716 (dbus-get-property bus systemd-dbus-service path
4717 systemd-dbus-interface-unit "LoadError"))
4718
4719 (defun systemd-unit-Transient (bus path)
4720 "Read only property."
4721 (dbus-get-property bus systemd-dbus-service path
4722 systemd-dbus-interface-unit "Transient"))
4723
4724 (defun systemd-unit-StartLimitIntervalSec (bus path)
4725 "Read only property."
4726 (dbus-get-property bus systemd-dbus-service path
4727 systemd-dbus-interface-unit "StartLimitIntervalSec"))
4728
4729 (defun systemd-unit-StartLimitBurst (bus path)
4730 "Read only property."
4731 (dbus-get-property bus systemd-dbus-service path
4732 systemd-dbus-interface-unit "StartLimitBurst"))
4733
4734 (defun systemd-unit-StartLimitAction (bus path)
4735 "Read only property."
4736 (dbus-get-property bus systemd-dbus-service path
4737 systemd-dbus-interface-unit "StartLimitAction"))
4738
4739 (defun systemd-unit-RebootArgument (bus path)
4740 "Read only property."
4741 (dbus-get-property bus systemd-dbus-service path
4742 systemd-dbus-interface-unit "RebootArgument"))
4743
4744 (defun systemd-unit-Start (bus path &rest args)
4745 (apply #'dbus-call-method bus systemd-dbus-service path
4746 systemd-dbus-interface-unit "Start" args))
4747
4748 (defun systemd-unit-Stop (bus path &rest args)
4749 (apply #'dbus-call-method bus systemd-dbus-service path
4750 systemd-dbus-interface-unit "Stop" args))
4751
4752 (defun systemd-unit-Reload (bus path &rest args)
4753 (apply #'dbus-call-method bus systemd-dbus-service path
4754 systemd-dbus-interface-unit "Reload" args))
4755
4756 (defun systemd-unit-Restart (bus path &rest args)
4757 (apply #'dbus-call-method bus systemd-dbus-service path
4758 systemd-dbus-interface-unit "Restart" args))
4759
4760 (defun systemd-unit-TryRestart (bus path &rest args)
4761 (apply #'dbus-call-method bus systemd-dbus-service path
4762 systemd-dbus-interface-unit "TryRestart" args))
4763
4764 (defun systemd-unit-ReloadOrRestart (bus path &rest args)
4765 (apply #'dbus-call-method bus systemd-dbus-service path
4766 systemd-dbus-interface-unit "ReloadOrRestart" args))
4767
4768 (defun systemd-unit-ReloadOrTryRestart (bus path &rest args)
4769 (apply #'dbus-call-method bus systemd-dbus-service path
4770 systemd-dbus-interface-unit "ReloadOrTryRestart" args))
4771
4772 (defun systemd-unit-Kill (bus path &rest args)
4773 (apply #'dbus-call-method bus systemd-dbus-service path
4774 systemd-dbus-interface-unit "Kill" args))
4775
4776 (defun systemd-unit-ResetFailed (bus path)
4777 (dbus-call-method bus systemd-dbus-service path
4778 systemd-dbus-interface-unit "ResetFailed"))
4779
4780 (defun systemd-unit-SetProperties (bus path &rest args)
4781 (apply #'dbus-call-method bus systemd-dbus-service path
4782 systemd-dbus-interface-unit "SetProperties" args))
4783
4784 (provide 'systemd)
4785 ;;; systemd.el ends here