Searched defs:ps (Results 1 - 8 of 8) sorted by relevance

/systemd/src/bootchart/
H A Dstore.c210 struct ps_struct *ps; local
220 ps = ps_first;
221 while (ps->next_ps) {
222 ps = ps->next_ps;
223 if (ps->pid == pid)
228 if (ps->pid != pid) {
233 ps->next_ps = new0(struct ps_struct, 1);
234 if (!ps->next_ps)
237 ps
[all...]
H A Dbootchart.c321 struct ps_struct *ps; local
354 /* start with empty ps LL */
458 ps = ps_first;
459 while (ps->next_ps) {
460 ps = ps->next_ps;
461 ps->schedstat = safe_close(ps->schedstat);
462 ps->sched = safe_close(ps
[all...]
H A Dsvg.c126 fprintf(of, " rect.ps { fill: rgb(192,192,192); stroke: rgb(128,128,128); fill-opacity: 0.7; }\n");
290 struct ps_struct *ps; local
331 ps = ps_first;
332 while (ps->next_ps) {
333 ps = ps->next_ps;
334 if (!ps)
336 ps->sample = ps->first;
337 while (ps
867 get_next_ps(struct ps_struct *ps, struct ps_struct *ps_first) argument
896 ps_filter(struct ps_struct *ps) argument
1009 struct ps_struct *ps; local
1211 struct ps_struct *ps; local
1243 struct ps_struct *ps; local
1285 struct ps_struct *ps; local
[all...]
/systemd/src/journal/
H A Djournald-native.c386 size_t ps; local
390 ps = PAGE_ALIGN(st.st_size);
391 p = mmap(NULL, ps, PROT_READ, MAP_PRIVATE, fd, 0);
398 assert_se(munmap(p, ps) >= 0);
/systemd/src/core/
H A Ddbus-execute.c1409 ProtectSystem ps; local
1417 ps = PROTECT_SYSTEM_YES;
1419 ps = PROTECT_SYSTEM_NO;
1421 ps = protect_system_from_string(s);
1422 if (ps < 0)
1427 c->protect_system = ps;
H A Dbusname.c755 size_t start, ps, sz, delta; local
786 ps = page_size();
787 start = (cmd_recv.msg.offset / ps) * ps;
H A Dservice.c2439 PathSpec *ps; local
2444 ps = new0(PathSpec, 1);
2445 if (!ps)
2448 ps->unit = UNIT(s);
2449 ps->path = strdup(s->pid_file);
2450 if (!ps->path) {
2451 free(ps);
2455 path_kill_slashes(ps->path);
2459 ps->type = PATH_MODIFIED;
2460 ps
[all...]
/systemd/src/tmpfiles/
H A Dtmpfiles.c1586 struct stat s, ps; local
1621 if (fstatat(dirfd(d), "..", &ps, AT_SYMLINK_NOFOLLOW) != 0)
1624 mountpoint = s.st_dev != ps.st_dev || s.st_ino == ps.st_ino;

Completed in 1216 milliseconds