HomeSort by relevance Sort by last modified time
    Searched refs:xlat (Results 1 - 25 of 377) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/
mpers_xlat.h 1 extern const struct xlat blkpg_ops[];
2 extern const struct xlat btrfs_balance_args[];
3 extern const struct xlat btrfs_balance_ctl_cmds[];
4 extern const struct xlat btrfs_balance_flags[];
5 extern const struct xlat btrfs_balance_state[];
6 extern const struct xlat btrfs_compress_types[];
7 extern const struct xlat btrfs_defrag_flags[];
8 extern const struct xlat btrfs_dev_replace_cmds[];
9 extern const struct xlat btrfs_dev_replace_results[];
10 extern const struct xlat btrfs_dev_replace_state[]
    [all...]
  /external/strace/xlat/
btrfs_features_compat.h 1 /* Generated by ./xlat/gen.sh from ./xlat/btrfs_features_compat.in; do not edit. */
5 extern const struct xlat btrfs_features_compat[];
12 const struct xlat btrfs_features_compat[] = {
btrfs_dev_stats_flags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/btrfs_dev_stats_flags.in; do not edit. */
5 extern const struct xlat btrfs_dev_stats_flags[];
12 const struct xlat btrfs_dev_stats_flags[] = {
btrfs_qgroup_inherit_flags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/btrfs_qgroup_inherit_flags.in; do not edit. */
5 extern const struct xlat btrfs_qgroup_inherit_flags[];
12 const struct xlat btrfs_qgroup_inherit_flags[] = {
mq_attr_flags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/mq_attr_flags.in; do not edit. */
5 extern const struct xlat mq_attr_flags[];
12 const struct xlat mq_attr_flags[] = {
14 XLAT(O_NONBLOCK),
mtd_mode_options.h 1 /* Generated by ./xlat/gen.sh from ./xlat/mtd_mode_options.in; do not edit. */
5 extern const struct xlat mtd_mode_options[];
12 const struct xlat mtd_mode_options[] = {
13 XLAT(MTD_OPS_PLACE_OOB),
14 XLAT(MTD_OPS_AUTO_OOB),
15 XLAT(MTD_OPS_RAW),
sigemt_codes.h 1 /* Generated by ./xlat/gen.sh from ./xlat/sigemt_codes.in; do not edit. */
8 extern const struct xlat sigemt_codes[];
15 const struct xlat sigemt_codes[] = {
16 XLAT(EMT_TAGOVF),
sigprof_codes.h 1 /* Generated by ./xlat/gen.sh from ./xlat/sigprof_codes.in; do not edit. */
5 extern const struct xlat sigprof_codes[];
12 const struct xlat sigprof_codes[] = {
14 XLAT(PROF_SIG),
sigsys_codes.h 1 /* Generated by ./xlat/gen.sh from ./xlat/sigsys_codes.in; do not edit. */
8 extern const struct xlat sigsys_codes[];
15 const struct xlat sigsys_codes[] = {
16 XLAT(SYS_SECCOMP),
ubi_volume_props.h 1 /* Generated by ./xlat/gen.sh from ./xlat/ubi_volume_props.in; do not edit. */
5 # error static const struct xlat ubi_volume_props in mpers mode
10 const struct xlat ubi_volume_props[] = {
11 XLAT(UBI_VOL_PROP_DIRECT_WRITE),
ubi_volume_types.h 1 /* Generated by ./xlat/gen.sh from ./xlat/ubi_volume_types.in; do not edit. */
5 # error static const struct xlat ubi_volume_types in mpers mode
10 const struct xlat ubi_volume_types[] = {
11 XLAT(UBI_DYNAMIC_VOLUME),
12 XLAT(UBI_STATIC_VOLUME),
v4l2_capture_modes.h 1 /* Generated by ./xlat/gen.sh from ./xlat/v4l2_capture_modes.in; do not edit. */
5 extern const struct xlat v4l2_capture_modes[];
12 const struct xlat v4l2_capture_modes[] = {
14 XLAT(V4L2_MODE_HIGHQUALITY),
v4l2_streaming_capabilities.h 1 /* Generated by ./xlat/gen.sh from ./xlat/v4l2_streaming_capabilities.in; do not edit. */
5 extern const struct xlat v4l2_streaming_capabilities[];
12 const struct xlat v4l2_streaming_capabilities[] = {
14 XLAT(V4L2_CAP_TIMEPERFRAME),
  /external/strace/tests/
printxval.c 33 #include "xlat.h"
37 printxval(const struct xlat *xlat, unsigned long long val,
40 for (; xlat->str; xlat++) {
41 if (xlat->val == val) {
42 fputs(xlat->str, stdout);
printflags.c 33 #include "xlat.h"
37 printflags(const struct xlat *xlat, unsigned long long flags,
40 if (flags == 0 && xlat->val == 0 && xlat->str) {
41 fputs(xlat->str, stdout);
47 for (n = 0; xlat->str; xlat++) {
48 if (xlat->val && (flags & xlat->val) == xlat->val)
    [all...]
prlimit64.c 41 # include "xlat.h"
42 # include "xlat/resources.h"
67 const struct xlat *xlat; local
69 for (xlat = resources; xlat->str; ++xlat) {
70 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
74 (unsigned) pid, xlat->str, rlimit,
79 (unsigned) pid, xlat->str
    [all...]
setrlimit.c 41 const struct xlat *xlat; local
43 for (xlat = resources; xlat->str; ++xlat) {
44 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
46 printf("setrlimit(%s, NULL) = %s\n", xlat->str, sprintrc(rc));
57 xlat->str,
  /external/strace/tests-m32/
printxval.c 33 #include "xlat.h"
37 printxval(const struct xlat *xlat, unsigned long long val,
40 for (; xlat->str; xlat++) {
41 if (xlat->val == val) {
42 fputs(xlat->str, stdout);
printflags.c 33 #include "xlat.h"
37 printflags(const struct xlat *xlat, unsigned long long flags,
40 if (flags == 0 && xlat->val == 0 && xlat->str) {
41 fputs(xlat->str, stdout);
47 for (n = 0; xlat->str; xlat++) {
48 if (xlat->val && (flags & xlat->val) == xlat->val)
    [all...]
prlimit64.c 41 # include "xlat.h"
42 # include "xlat/resources.h"
67 const struct xlat *xlat; local
69 for (xlat = resources; xlat->str; ++xlat) {
70 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
74 (unsigned) pid, xlat->str, rlimit,
79 (unsigned) pid, xlat->str
    [all...]
setrlimit.c 41 const struct xlat *xlat; local
43 for (xlat = resources; xlat->str; ++xlat) {
44 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
46 printf("setrlimit(%s, NULL) = %s\n", xlat->str, sprintrc(rc));
57 xlat->str,
  /external/strace/tests-mx32/
printxval.c 33 #include "xlat.h"
37 printxval(const struct xlat *xlat, unsigned long long val,
40 for (; xlat->str; xlat++) {
41 if (xlat->val == val) {
42 fputs(xlat->str, stdout);
printflags.c 33 #include "xlat.h"
37 printflags(const struct xlat *xlat, unsigned long long flags,
40 if (flags == 0 && xlat->val == 0 && xlat->str) {
41 fputs(xlat->str, stdout);
47 for (n = 0; xlat->str; xlat++) {
48 if (xlat->val && (flags & xlat->val) == xlat->val)
    [all...]
prlimit64.c 41 # include "xlat.h"
42 # include "xlat/resources.h"
67 const struct xlat *xlat; local
69 for (xlat = resources; xlat->str; ++xlat) {
70 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
74 (unsigned) pid, xlat->str, rlimit,
79 (unsigned) pid, xlat->str
    [all...]
setrlimit.c 41 const struct xlat *xlat; local
43 for (xlat = resources; xlat->str; ++xlat) {
44 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
46 printf("setrlimit(%s, NULL) = %s\n", xlat->str, sprintrc(rc));
57 xlat->str,

Completed in 347 milliseconds

1 2 3 4 5 6 7 8 91011>>