table            3612 src/core/load-fragment.c         } table[] = {
table            3725 src/core/load-fragment.c                 for (j = 0; j < ELEMENTSOF(table); j++)
table            3726 src/core/load-fragment.c                         if (p->parse == table[j].callback) {
table            3727 src/core/load-fragment.c                                 rvalue = table[j].rvalue;
table            1819 src/core/main.c                         static const char * const table[_MANAGER_EXIT_CODE_MAX] = {
table            1826 src/core/main.c                         assert_se(shutdown_verb = table[m->exit_code]);
table             651 src/core/service.c         const UnitActiveState *table;
table             655 src/core/service.c         table = s->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
table             736 src/core/service.c         unit_notify(UNIT(s), table[old_state], table[state], s->reload_result == SERVICE_SUCCESS);
table            1958 src/core/service.c         const UnitActiveState *table;
table            1962 src/core/service.c         table = SERVICE(u)->type == SERVICE_IDLE ? state_translation_table_idle : state_translation_table;
table            1964 src/core/service.c         return table[SERVICE(u)->state];
table             352 src/core/unit-printf.c         const Specifier table[] = {
table             364 src/core/unit-printf.c         return specifier_printf(format, table, u, ret);
table             387 src/core/unit-printf.c         const Specifier table[] = {
table             416 src/core/unit-printf.c         return specifier_printf(format, table, u, ret);
table             544 src/firstboot/firstboot.c         static const char table[] =
table             618 src/firstboot/firstboot.c         assert_cc(sizeof(table) == 64 + 1);
table             621 src/firstboot/firstboot.c                 j[i] = table[raw[i] & 63];
table              80 src/initctl/initctl.c         } table[] = {
table              96 src/initctl/initctl.c         for (i = 0; i < ELEMENTSOF(table); i++)
table              97 src/initctl/initctl.c                 if (table[i].runlevel == runlevel) {
table              98 src/initctl/initctl.c                         *isolate = table[i].isolate;
table             101 src/initctl/initctl.c                         return table[i].special;
table             433 src/journal/journal-file.c         static const uint64_t table[] = {
table             443 src/journal/journal-file.c         if (o->object.type >= ELEMENTSOF(table) || table[o->object.type] <= 0)
table             446 src/journal/journal-file.c         return table[o->object.type];
table              44 src/shared/base-filesystem.c static const BaseFilesystem table[] = {
table              66 src/shared/base-filesystem.c         for (i = 0; i < ELEMENTSOF(table); i ++) {
table              67 src/shared/base-filesystem.c                 if (faccessat(fd, table[i].dir, F_OK, AT_SYMLINK_NOFOLLOW) >= 0)
table              70 src/shared/base-filesystem.c                 if (table[i].target) {
table              74 src/shared/base-filesystem.c                         NULSTR_FOREACH(s, table[i].target) {
table              79 src/shared/base-filesystem.c                                 if (table[i].exists) {
table              82 src/shared/base-filesystem.c                                         p = strjoin(s, "/", table[i].exists, NULL);
table              97 src/shared/base-filesystem.c                         r = symlinkat(target, fd, table[i].dir);
table              99 src/shared/base-filesystem.c                                 log_error("Failed to create symlink at %s/%s: %m", root, table[i].dir);
table             106 src/shared/base-filesystem.c                         r = mkdirat(fd, table[i].dir, table[i].mode);
table             108 src/shared/base-filesystem.c                         log_error("Failed to create directory at %s/%s: %m", root, table[i].dir);
table              79 src/shared/conf-parser.c                 const void *table,
table              89 src/shared/conf-parser.c         assert(table);
table              95 src/shared/conf-parser.c         for (t = table; t->lvalue; t++) {
table             113 src/shared/conf-parser.c                 const void *table,
table             121 src/shared/conf-parser.c         ConfigPerfItemLookup lookup = (ConfigPerfItemLookup) table;
table             124 src/shared/conf-parser.c         assert(table);
table             157 src/shared/conf-parser.c                            const void *table,
table             176 src/shared/conf-parser.c         r = lookup(table, section, lvalue, &func, &ltype, &data, userdata);
table             202 src/shared/conf-parser.c                       const void *table,
table             248 src/shared/conf-parser.c                 return config_parse(unit, fn, NULL, sections, lookup, table, relaxed, false, false, userdata);
table             311 src/shared/conf-parser.c                                table,
table             326 src/shared/conf-parser.c                  const void *table,
table             412 src/shared/conf-parser.c                                table,
table              68 src/shared/conf-parser.h                 const void *table,
table              78 src/shared/conf-parser.h int config_item_table_lookup(const void *table, const char *section, const char *lvalue, ConfigParserCallback *func, int *ltype, void **data, void *userdata);
table              82 src/shared/conf-parser.h int config_item_perf_lookup(const void *table, const char *section, const char *lvalue, ConfigParserCallback *func, int *ltype, void **data, void *userdata);
table              89 src/shared/conf-parser.h                  const void *table,
table             135 src/shared/install-printf.c         const Specifier table[] = {
table             155 src/shared/install-printf.c         return specifier_printf(format, table, i, ret);
table              35 src/shared/specifier.c int specifier_printf(const char *text, const Specifier table[], void *userdata, char **_ret) {
table              43 src/shared/specifier.c         assert(table);
table              60 src/shared/specifier.c                                 for (i = table; i->specifier; i++)
table              32 src/shared/specifier.h int specifier_printf(const char *text, const Specifier table[], void *userdata, char **ret);
table             280 src/shared/time-util.c         } table[] = {
table             313 src/shared/time-util.c         for (i = 0; i < ELEMENTSOF(table); i++) {
table             325 src/shared/time-util.c                 if (t < table[i].usec)
table             331 src/shared/time-util.c                 a = t / table[i].usec;
table             332 src/shared/time-util.c                 b = t % table[i].usec;
table             340 src/shared/time-util.c                         for (cc = table[i].usec; cc > 1; cc /= 10)
table             355 src/shared/time-util.c                                              table[i].suffix);
table             368 src/shared/time-util.c                                      table[i].suffix);
table             620 src/shared/time-util.c         } table[] = {
table             715 src/shared/time-util.c                 for (i = 0; i < ELEMENTSOF(table); i++)
table             716 src/shared/time-util.c                         if (startswith(e, table[i].suffix)) {
table             717 src/shared/time-util.c                                 usec_t k = (usec_t) z * table[i].usec;
table             722 src/shared/time-util.c                                 r += (usec_t) l * table[i].usec + k;
table             723 src/shared/time-util.c                                 p = e + strlen(table[i].suffix);
table             729 src/shared/time-util.c                 if (i >= ELEMENTSOF(table))
table             743 src/shared/time-util.c         } table[] = {
table             840 src/shared/time-util.c                 for (i = 0; i < ELEMENTSOF(table); i++)
table             841 src/shared/time-util.c                         if (startswith(e, table[i].suffix)) {
table             842 src/shared/time-util.c                                 nsec_t k = (nsec_t) z * table[i].nsec;
table             847 src/shared/time-util.c                                 r += (nsec_t) l * table[i].nsec + k;
table             848 src/shared/time-util.c                                 p = e + strlen(table[i].suffix);
table             854 src/shared/time-util.c                 if (i >= ELEMENTSOF(table))
table            1088 src/shared/util.c         static const char table[16] = "0123456789abcdef";
table            1090 src/shared/util.c         return table[x & 15];
table            1589 src/shared/util.c         static const char table[] =
table            1607 src/shared/util.c         return nulstr_contains(table, fstype);
table            2289 src/shared/util.c         static const struct table iec[] = {
table            2300 src/shared/util.c         static const struct table si[] = {
table            2311 src/shared/util.c         const struct table *table;
table            2321 src/shared/util.c                 table = si;
table            2324 src/shared/util.c                 table = iec;
table            2369 src/shared/util.c                         if (startswith(e, table[i].suffix)) {
table            2371 src/shared/util.c                                 if ((unsigned long long) l + (frac > 0) > ULLONG_MAX / table[i].factor)
table            2373 src/shared/util.c                                 tmp = l * table[i].factor + (unsigned long long) (frac * table[i].factor);
table            2381 src/shared/util.c                                 p = e + strlen(table[i].suffix);
table            5017 src/shared/util.c         } table[] = {
table            5026 src/shared/util.c         for (i = 0; i < ELEMENTSOF(table); i++) {
table            5028 src/shared/util.c                 if (t >= table[i].factor) {
table            5031 src/shared/util.c                                  (unsigned long long) (t / table[i].factor),
table            5032 src/shared/util.c                                  (unsigned long long) (((t*10ULL) / table[i].factor) % 10ULL),
table            5033 src/shared/util.c                                  table[i].suffix);
table             156 src/shutdownd/shutdownd.c         } table[] = {
table             164 src/shutdownd/shutdownd.c         unsigned i = ELEMENTSOF(table) - 1;
table             171 src/shutdownd/shutdownd.c         while (left < table[i].delay)
table             173 src/shutdownd/shutdownd.c         sub = (left / table[i].interval) * table[i].interval;
table             223 src/systemctl/systemctl.c         static const char *table[_ACTION_MAX] = {
table             251 src/systemctl/systemctl.c         if (!table[a])
table             254 src/systemctl/systemctl.c         utmp_wall(table[a], NULL, NULL);
table            6498 src/systemctl/systemctl.c         } table[] = {
table            6554 src/systemctl/systemctl.c         for (i = 0; i < ELEMENTSOF(table); i++)
table            6555 src/systemctl/systemctl.c                 if (table[i].from == argv[optind][0])
table            6558 src/systemctl/systemctl.c         if (i >= ELEMENTSOF(table)) {
table            6563 src/systemctl/systemctl.c         arg_action = table[i].to;
table            6658 src/systemctl/systemctl.c         static const char table[_ACTION_MAX] = {
table            6671 src/systemctl/systemctl.c         return table[arg_action];
table             262 src/sysv-generator/sysv-generator.c         static const char * const table[] = {
table             283 src/sysv-generator/sysv-generator.c         for (i = 0; i < ELEMENTSOF(table); i += 2) {
table             285 src/sysv-generator/sysv-generator.c                 if (!streq(table[i], n))
table             288 src/sysv-generator/sysv-generator.c                 if (!table[i+1])
table             291 src/sysv-generator/sysv-generator.c                 r = strdup(table[i+1]);
table              77 src/update-utmp/update-utmp.c         } table[] = {
table              96 src/update-utmp/update-utmp.c         for (i = 0; i < ELEMENTSOF(table); i++) {
table              99 src/update-utmp/update-utmp.c                 path = unit_dbus_path_from_name(table[i].special);
table             117 src/update-utmp/update-utmp.c                         return table[i].runlevel;