Searched defs:rt (Results 1 - 11 of 11) sorted by relevance

/systemd/src/bootchart/
H A Dstore.c108 char rt[256]; local
171 if (sscanf(m, "%s %*s %*s %*s %*s %*s %*s %s %s", key, rt, wt) < 3)
179 sampledata->runtime[c] = atoll(rt);
252 ps->sample->runtime = atoll(rt);
363 /* rt, wt */
382 if (!sscanf(buf, "%s %s %*s", rt, wt))
392 ps->sample->runtime = atoll(rt);
445 if (!sscanf(buf, "%s %s %*s", rt, wt))
448 r = safe_atolli(rt, &delta_rt);
451 r = safe_atolli(rt,
[all...]
H A Dsvg.c1072 double rt, prt; local
1080 rt = ps->sample->runtime - prev->runtime;
1083 prt = (rt / 1000000000) / (ps->sample->sampledata->sampletime - prev->sampledata->sampletime);
/systemd/src/login/
H A Dpam_systemd.c268 _cleanup_free_ char *rt = NULL; local
270 if (asprintf(&rt, "/run/user/"UID_FMT, pw->pw_uid) < 0)
273 r = pam_misc_setenv(handle, "XDG_RUNTIME_DIR", rt, 0);
279 r = export_legacy_dbus_address(handle, pw->pw_uid, rt);
/systemd/src/test/
H A Dtest-path-util.c388 int rt, rf, rlt, rlf, rl1t, rl1f; local
393 rt = path_is_mount_point(file2, AT_SYMLINK_FOLLOW);
400 assert_se(rt == 1);
414 rt = path_is_mount_point(dir1, AT_SYMLINK_FOLLOW);
424 assert_se(rt == 1);
/systemd/src/journal/
H A Djournal-verify.c1070 uint64_t q, rt; local
1074 rt = f->fss_start_usec + o->tag.epoch * f->fss_interval_usec;
1075 if (entry_realtime_set && entry_realtime >= rt + f->fss_interval_usec) {
1125 last_tag_realtime = rt;
/systemd/src/core/
H A Ddbus-manager.c1256 char *ri = NULL, *rt = NULL; local
1296 rt = strdup(root);
1297 if (!rt)
1303 free(rt);
1309 m->switch_root = rt;
H A Dexecute.c1687 char **rt; local
1689 STRV_FOREACH(rt, context->runtime_directory) {
1692 p = strjoin(params->runtime_prefix, "/", *rt, NULL);
2913 static int exec_runtime_allocate(ExecRuntime **rt) { argument
2915 if (*rt)
2918 *rt = new0(ExecRuntime, 1);
2919 if (!*rt)
2922 (*rt)->n_ref = 1;
2923 (*rt)->netns_storage_socket[0] = (*rt)
2928 exec_runtime_make(ExecRuntime **rt, ExecContext *c, const char *id) argument
2986 exec_runtime_serialize(Unit *u, ExecRuntime *rt, FILE *f, FDSet *fds) argument
3023 exec_runtime_deserialize_item(Unit *u, ExecRuntime **rt, const char *key, const char *value, FDSet *fds) argument
3097 exec_runtime_destroy(ExecRuntime *rt) argument
[all...]
H A Dload-fragment.c3208 char***rt = data; local
3221 *rt = strv_free(*rt);
3243 r = strv_push(rt, n);
H A Dunit.c2554 ExecRuntime *rt; local
2560 rt = unit_get_exec_runtime(u);
2561 if (rt) {
2562 r = exec_runtime_serialize(u, rt, f, fds);
2683 ExecRuntime **rt = NULL; local
2693 rt = (ExecRuntime**) ((uint8_t*) u + offset);
2831 if (rt) {
2832 r = exec_runtime_deserialize_item(u, rt, l, v, fds);
3656 ExecRuntime **rt; local
3665 rt
[all...]
/systemd/src/network/
H A Dnetworkd-link.c667 Route *rt; local
676 LIST_FOREACH(routes, rt, link->network->static_routes) {
677 r = route_configure(rt, link, &route_handler);
/systemd/src/basic/
H A Dcgroup-util.c1192 _cleanup_free_ char *rt = NULL; local
1203 r = cg_get_root_path(&rt);
1207 root = rt;

Completed in 2102 milliseconds