HomeSort by relevance Sort by last modified time
    Searched defs:xlat (Results 1 - 15 of 15) sorted by null

  /external/strace/tests/
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,
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...]
xgetrlimit.c 36 #include "xlat.h"
37 #include "xlat/resources.h"
67 const struct xlat *xlat; local
69 for (xlat = resources; xlat->str; ++xlat) {
70 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
75 STR_GETRLIMIT, xlat->str, rc, errno2name());
80 STR_GETRLIMIT, xlat->str, rc, errno2name())
    [all...]
  /external/strace/tests-m32/
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,
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...]
xgetrlimit.c 36 #include "xlat.h"
37 #include "xlat/resources.h"
67 const struct xlat *xlat; local
69 for (xlat = resources; xlat->str; ++xlat) {
70 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
75 STR_GETRLIMIT, xlat->str, rc, errno2name());
80 STR_GETRLIMIT, xlat->str, rc, errno2name())
    [all...]
  /external/strace/tests-mx32/
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,
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...]
xgetrlimit.c 36 #include "xlat.h"
37 #include "xlat/resources.h"
67 const struct xlat *xlat; local
69 for (xlat = resources; xlat->str; ++xlat) {
70 unsigned long res = 0xfacefeed00000000ULL | xlat->val;
75 STR_GETRLIMIT, xlat->str, rc, errno2name());
80 STR_GETRLIMIT, xlat->str, rc, errno2name())
    [all...]
  /external/strace/
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.h 6 struct xlat { struct
11 # define XLAT(val) { (unsigned)(val), #val }
netlink.c 36 #include "xlat/netlink_ack_flags.h"
37 #include "xlat/netlink_delete_flags.h"
38 #include "xlat/netlink_flags.h"
39 #include "xlat/netlink_get_flags.h"
40 #include "xlat/netlink_new_flags.h"
41 #include "xlat/netlink_protocols.h"
42 #include "xlat/netlink_types.h"
43 #include "xlat/nf_acct_msg_types.h"
44 #include "xlat/nf_cthelper_msg_types.h"
45 #include "xlat/nf_ctnetlink_exp_msg_types.h
126 const struct xlat *const xlat; member in struct:__anon35320
192 const struct xlat *const xlat; member in struct:__anon35321
222 const struct xlat *xlat = netlink_types; local
    [all...]
  /external/llvm/test/MC/X86/
intel-syntax.s 794 xlat byte ptr [eax] label
  /toolchain/binutils/binutils-2.27/gas/config/
obj-macho.c 178 const mach_o_section_name_xlat *xlat; local
182 xlat = bfd_mach_o_section_data_for_mach_sect (stdoutput, segname, sectname);
186 if (xlat != NULL)
188 name = xstrdup (xlat->bfd_name);
189 sectype = xlat->macho_sectype;
200 secattr = xlat->macho_secattr;
201 secalign = xlat->sectalign;
202 flags = xlat->bfd_flags;
596 const mach_o_section_name_xlat *xlat; local
602 xlat = bfd_mach_o_section_data_for_bfd_name (stdoutput, nam, &segn)
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
mach-o.c 379 const mach_o_section_name_xlat *xlat; local
388 xlat will be non-null if there is an entry for segname, secname. */
389 xlat = bfd_mach_o_section_data_for_mach_sect (abfd, segname, secname);
390 if (xlat)
392 len = strlen (xlat->bfd_name);
396 memcpy (res, xlat->bfd_name, len+1);
398 *flags = xlat->bfd_flags;
438 const mach_o_section_name_xlat *xlat; local
450 xlat = bfd_mach_o_section_data_for_bfd_name (abfd, name, &segname);
451 if (xlat)
3364 static const mach_o_section_name_xlat * xlat; local
    [all...]

Completed in 674 milliseconds