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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/
mpers_xlat.h 1 extern const struct xlat block_ioctl_cmds[];
2 extern const struct xlat blkpg_ops[];
3 extern const struct xlat btrfs_balance_args[];
4 extern const struct xlat btrfs_balance_ctl_cmds[];
5 extern const struct xlat btrfs_balance_flags[];
6 extern const struct xlat btrfs_balance_state[];
7 extern const struct xlat btrfs_compress_types[];
8 extern const struct xlat btrfs_cont_reading_from_srcdev_mode[];
9 extern const struct xlat btrfs_defrag_flags[];
10 extern const struct xlat btrfs_dev_replace_cmds[]
    [all...]
dyxlat.c 32 struct xlat *xlat; member in struct:dyxlat
35 #define MARK_END(xlat) \
37 (xlat).val = 0; \
38 (xlat).str = 0; \
48 dyxlat->xlat = xgrowarray(NULL, &dyxlat->allocated, sizeof(struct xlat));
49 MARK_END(dyxlat->xlat[0]);
60 free((void *) dyxlat->xlat[i].str);
61 dyxlat->xlat[i].str = NULL
    [all...]
xlat.c 74 xlookup(const struct xlat *xlat, const uint64_t val)
76 static const struct xlat *pos;
78 if (xlat)
79 pos = xlat;
91 const uint64_t val2 = ((const struct xlat *) b)->val;
96 xlat_search(const struct xlat *xlat, const size_t nmemb, const uint64_t val)
98 static const struct xlat *pos;
101 if (xlat) {
    [all...]
  /external/strace/xlat/
btrfs_features_compat.h 1 /* Generated by ./xlat/gen.sh from ./xlat/btrfs_features_compat.in; do not edit. */
11 extern const struct xlat btrfs_features_compat[];
18 const struct xlat btrfs_features_compat[] = {
mq_attr_flags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/mq_attr_flags.in; do not edit. */
11 extern const struct xlat mq_attr_flags[];
18 const struct xlat mq_attr_flags[] = {
20 XLAT(O_NONBLOCK),
sigprof_codes.h 1 /* Generated by ./xlat/gen.sh from ./xlat/sigprof_codes.in; do not edit. */
11 extern const struct xlat sigprof_codes[];
18 const struct xlat sigprof_codes[] = {
20 XLAT(PROF_SIG),
ubi_volume_props.h 1 /* Generated by ./xlat/gen.sh from ./xlat/ubi_volume_props.in; do not edit. */
11 # error static const struct xlat ubi_volume_props in mpers mode
16 const struct xlat ubi_volume_props[] = {
17 XLAT(UBI_VOL_PROP_DIRECT_WRITE),
v4l2_capture_modes.h 1 /* Generated by ./xlat/gen.sh from ./xlat/v4l2_capture_modes.in; do not edit. */
11 extern const struct xlat v4l2_capture_modes[];
18 const struct xlat v4l2_capture_modes[] = {
20 XLAT(V4L2_MODE_HIGHQUALITY),
v4l2_streaming_capabilities.h 1 /* Generated by ./xlat/gen.sh from ./xlat/v4l2_streaming_capabilities.in; do not edit. */
11 extern const struct xlat v4l2_streaming_capabilities[];
18 const struct xlat v4l2_streaming_capabilities[] = {
20 XLAT(V4L2_CAP_TIMEPERFRAME),
atomic_ops.h 1 /* Generated by ./xlat/gen.sh from ./xlat/atomic_ops.in; do not edit. */
11 # error static const struct xlat atomic_ops in mpers mode
16 const struct xlat atomic_ops[] = {
bsg_protocol.h 1 /* Generated by ./xlat/gen.sh from ./xlat/bsg_protocol.in; do not edit. */
11 # error static const struct xlat bsg_protocol in mpers mode
16 const struct xlat bsg_protocol[] = {
18 XLAT(BSG_PROTOCOL_SCSI),
btrfs_dev_stats_flags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/btrfs_dev_stats_flags.in; do not edit. */
11 extern const struct xlat btrfs_dev_stats_flags[];
18 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. */
11 extern const struct xlat btrfs_qgroup_inherit_flags[];
18 const struct xlat btrfs_qgroup_inherit_flags[] = {
  /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 706 milliseconds

1 2 3 4 5 6 7 8 91011>>