/external/e2fsprogs/lib/et/ |
D | error_message.c | 56 struct et_list *et; in error_message() local 77 for (et = _et_list; et; et = et->next) { in error_message() 78 if ((et->table->base & 0xffffffL) == (table_num & 0xffffffL)) { in error_message() 80 if (et->table->n_msgs <= offset) in error_message() 82 return(et->table->msgs[offset]); in error_message() 85 for (et = _et_dynamic_list; et; et = et->next) { in error_message() 86 if ((et->table->base & 0xffffffL) == (table_num & 0xffffffL)) { in error_message() 88 if (et->table->n_msgs <= offset) in error_message() 90 return(et->table->msgs[offset]); in error_message() 172 errcode_t add_error_table(const struct error_table * et) in add_error_table() argument [all …]
|
D | com_right.c | 76 struct et_list *et, **end; in initialize_error_table_r() local 80 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_error_table_r() 81 if (et->table->msgs == messages) in initialize_error_table_r() 86 et = &f->etl; in initialize_error_table_r() 87 et->table = tab = &f->tab; in initialize_error_table_r() 91 et->next = NULL; in initialize_error_table_r() 92 *end = et; in initialize_error_table_r() 97 free_error_table(struct et_list *et) in free_error_table() argument 99 while(et){ in free_error_table() 100 struct et_list *p = et; in free_error_table() [all …]
|
D | Makefile.in | 9 my_dir = lib/et 26 LIBDIR= et 31 ELF_MYDIR = et 37 BSDLIB_MYDIR = et 67 @cd $(top_builddir); CONFIG_FILES=lib/et/com_err.pc ./config.status 79 $(DESTDIR)$(includedir)/et $(DESTDIR)$(datadir)/et \ 90 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/et/$$i; \ 94 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(datadir)/et/$$i; \ 110 $(RM) -rf $(DESTDIR)$(includedir)/et $(DESTDIR)$(datadir)/et 113 for i in $(srcdir)/test_cases/*.et ; do \
|
D | init_et.c | 29 struct error_table et; member 44 new_et->etl.table = &new_et->et; in init_error_table() 45 new_et->et.msgs = msgs; in init_error_table() 46 new_et->et.base = base; in init_error_table() 47 new_et->et.n_msgs= count; in init_error_table()
|
D | com_err.h | 46 extern errcode_t add_error_table(const struct error_table * et); 47 extern errcode_t remove_error_table(const struct error_table * et); 56 extern void free_error_table(struct et_list *et);
|
/external/e2fsprogs/lib/et/test_cases/ |
D | continuation.c | 38 struct et_list *et, **end; in initialize_ovk_error_table_r() local 40 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_ovk_error_table_r() 41 if (et->table->msgs == text) in initialize_ovk_error_table_r() 43 et = malloc(sizeof(struct et_list)); in initialize_ovk_error_table_r() 44 if (et == 0) { in initialize_ovk_error_table_r() 46 et = &link; in initialize_ovk_error_table_r() 50 et->table = &et_ovk_error_table; in initialize_ovk_error_table_r() 51 et->next = 0; in initialize_ovk_error_table_r() 52 *end = et; in initialize_ovk_error_table_r()
|
D | heimdal.c | 119 struct et_list *et, **end; in initialize_krb_error_table_r() local 121 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_krb_error_table_r() 122 if (et->table->msgs == text) in initialize_krb_error_table_r() 124 et = malloc(sizeof(struct et_list)); in initialize_krb_error_table_r() 125 if (et == 0) { in initialize_krb_error_table_r() 127 et = &link; in initialize_krb_error_table_r() 131 et->table = &et_krb_error_table; in initialize_krb_error_table_r() 132 et->next = 0; in initialize_krb_error_table_r() 133 *end = et; in initialize_krb_error_table_r()
|
D | imap_err.c | 67 struct et_list *et, **end; in initialize_imap_error_table_r() local 69 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_imap_error_table_r() 70 if (et->table->msgs == text) in initialize_imap_error_table_r() 72 et = malloc(sizeof(struct et_list)); in initialize_imap_error_table_r() 73 if (et == 0) { in initialize_imap_error_table_r() 75 et = &link; in initialize_imap_error_table_r() 79 et->table = &et_imap_error_table; in initialize_imap_error_table_r() 80 et->next = 0; in initialize_imap_error_table_r() 81 *end = et; in initialize_imap_error_table_r()
|
D | heimdal2.c | 105 struct et_list *et, **end; in initialize_kadm_error_table_r() local 107 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_kadm_error_table_r() 108 if (et->table->msgs == text) in initialize_kadm_error_table_r() 110 et = malloc(sizeof(struct et_list)); in initialize_kadm_error_table_r() 111 if (et == 0) { in initialize_kadm_error_table_r() 113 et = &link; in initialize_kadm_error_table_r() 117 et->table = &et_kadm_error_table; in initialize_kadm_error_table_r() 118 et->next = 0; in initialize_kadm_error_table_r() 119 *end = et; in initialize_kadm_error_table_r()
|
D | simple.c | 59 struct et_list *et, **end; in initialize_krb_error_table_r() local 61 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_krb_error_table_r() 62 if (et->table->msgs == text) in initialize_krb_error_table_r() 64 et = malloc(sizeof(struct et_list)); in initialize_krb_error_table_r() 65 if (et == 0) { in initialize_krb_error_table_r() 67 et = &link; in initialize_krb_error_table_r() 71 et->table = &et_krb_error_table; in initialize_krb_error_table_r() 72 et->next = 0; in initialize_krb_error_table_r() 73 *end = et; in initialize_krb_error_table_r()
|
D | heimdal3.c | 39 struct et_list *et, **end; in initialize_h3test_error_table_r() local 41 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_h3test_error_table_r() 42 if (et->table->msgs == text) in initialize_h3test_error_table_r() 44 et = malloc(sizeof(struct et_list)); in initialize_h3test_error_table_r() 45 if (et == 0) { in initialize_h3test_error_table_r() 47 et = &link; in initialize_h3test_error_table_r() 51 et->table = &et_h3test_error_table; in initialize_h3test_error_table_r() 52 et->next = 0; in initialize_h3test_error_table_r() 53 *end = et; in initialize_h3test_error_table_r()
|
/external/e2fsprogs/lib/ext2fs/ |
D | ext2_err.c | 144 struct et_list *et, **end; in initialize_ext2_error_table_r() local 146 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_ext2_error_table_r() 147 if (et->table->msgs == text) in initialize_ext2_error_table_r() 149 et = malloc(sizeof(struct et_list)); in initialize_ext2_error_table_r() 150 if (et == 0) { in initialize_ext2_error_table_r() 152 et = &link; in initialize_ext2_error_table_r() 156 et->table = &et_ext2_error_table; in initialize_ext2_error_table_r() 157 et->next = 0; in initialize_ext2_error_table_r() 158 *end = et; in initialize_ext2_error_table_r()
|
D | Makefile.in | 174 COMPILE_ET=../et/compile_et --build-tree 178 ext2_err.et: $(DEP_SUBSTITUTE) $(srcdir)/ext2_err.et.in 180 @$(SUBSTITUTE) $(srcdir)/ext2_err.et.in ext2_err.et 182 ext2_err.c ext2_err.h: ext2_err.et 184 @$(COMPILE_ET) ext2_err.et 286 tst_badblocks tst_iscan ext2_err.et ext2_err.c ext2_err.h \ 311 $(srcdir)/ext2_fs.h $(srcdir)/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ 315 $(srcdir)/ext2_fs.h $(srcdir)/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ 319 $(srcdir)/ext2_fs.h $(srcdir)/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ 323 $(srcdir)/ext2_fs.h $(srcdir)/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ [all …]
|
/external/e2fsprogs/e2fsck/ |
D | prof_err.c | 68 struct et_list *et, **end; in initialize_prof_error_table_r() local 70 for (end = list, et = *list; et; end = &et->next, et = et->next) in initialize_prof_error_table_r() 71 if (et->table->msgs == text) in initialize_prof_error_table_r() 73 et = malloc(sizeof(struct et_list)); in initialize_prof_error_table_r() 74 if (et == 0) { in initialize_prof_error_table_r() 76 et = &link; in initialize_prof_error_table_r() 80 et->table = &et_prof_error_table; in initialize_prof_error_table_r() 81 et->next = 0; in initialize_prof_error_table_r() 82 *end = et; in initialize_prof_error_table_r()
|
D | Makefile.in | 33 COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree 111 prof_err.c prof_err.h: prof_err.et 113 @$(COMPILE_ET) $(srcdir)/prof_err.et 245 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 253 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 260 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 265 pass1b.o: $(srcdir)/pass1b.c $(top_srcdir)/lib/et/com_err.h \ 275 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 282 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 289 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ [all …]
|
/external/e2fsprogs/lib/ss/ |
D | Makefile.in | 31 COMPILE_ET=../et/compile_et --build-tree 37 XTRA_CFLAGS= -I$(srcdir)/../et 93 ss_err.et std_rqs.ct Makefile \ 108 ss_err.c ss_err.h: ss_err.et 110 @$(COMPILE_ET) $(srcdir)/ss_err.et 200 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 202 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 204 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 206 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 208 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h [all …]
|
/external/e2fsprogs/debian/attic/libs/ |
D | rules | 19 COMERR_VERSION = $(shell grep ELF_VERSION lib/et/Makefile.in | cut '-d ' -f3) 49 cd lib/et && texi2html -split_chapter -expandinfo com_err.texinfo 65 rm -f doc/libext2fs_*.html lib/et/com_err_*.html 85 sed s%$(topdir)/lib/et%/usr/share/comerr% \ 86 <$(builddir)/lib/et/compile_et \ 90 install -m 644 lib/et/et_c.awk lib/et/et_h.awk \ 118 install -p $(topdir)/lib/et/com_err_*.html \ 124 install -p $(topdir)/lib/et/com_err.texinfo \ 139 install -p $(topdir)/lib/et/compile_et.1 $(maindir)/usr/man/man1/ 141 install -p $(topdir)/lib/et/com_err.3 $(maindir)/usr/man/man3/
|
/external/e2fsprogs/debugfs/ |
D | Makefile.in | 96 $(top_builddir)/lib/ss/ss_err.h $(top_srcdir)/lib/et/com_err.h 97 debugfs.o: $(srcdir)/debugfs.c $(top_srcdir)/lib/et/com_err.h \ 99 $(top_srcdir)/lib/et/com_err.h $(srcdir)/debugfs.h \ 109 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 113 $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_srcdir)/lib/et/com_err.h \ 119 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 124 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 129 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 134 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 139 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ [all …]
|
/external/tcpdump/ |
D | print-llc.c | 383 register u_short et; in snap_print() local 388 et = EXTRACT_16BITS(p + 3); in snap_print() 404 tok2str(tok, "Unknown", et), in snap_print() 405 et); in snap_print() 420 ret = ether_encap_print(et, p, length, caplen, in snap_print() 427 if (et == ETHERTYPE_ATALK) { in snap_print() 436 ret = ether_encap_print(et, p, length, caplen, in snap_print() 444 if (et == PID_CISCO_CDP) { in snap_print() 451 switch (et) { in snap_print()
|
/external/icu4c/data/coll/ |
D | et.txt | 6 // * Source File:<path>/common/collation/et.xml 10 * ICU <specials> source: <path>/xml/collation/et.xml 12 et{
|
/external/icu4c/data/rbnf/ |
D | fr.txt | 16 // * own: 1) The word "et" is interposed between the tens and ones digits, 18 // * but 21 is "vingt-et-un." 2) There are no words for 70, 80, or 90. 34 // ords for the multiples of 10: %%alt-ones inserts "et" 45 "71: soixante et onze;\n" 73 // %%alt-ones is used to insert "et" when the ones digit is 1 75 "; et-un; =%main=;\n"
|
/external/e2fsprogs/misc/ |
D | Makefile.in | 68 COMPILE_ET=$(top_builddir)/lib/et/compile_et --build-tree 77 prof_err.c prof_err.h: $(srcdir)/../e2fsck/prof_err.et 79 @$(COMPILE_ET) $(srcdir)/../e2fsck/prof_err.et 389 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 401 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/et/com_err.h \ 404 $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \ 410 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/et/com_err.h \ 414 $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/et/com_err.h \ 420 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \ 426 badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \ [all …]
|
/external/e2fsprogs/debian/ |
D | comerr-dev.examples | 1 lib/ss/ss_err.et 2 debian/BUILD-STD/lib/ext2fs/ext2_err.et
|
D | comerr-dev.files | 3 usr/include/et/* 8 usr/share/et/*
|
D | rules | 25 COMERR_VERSION = $(shell grep ELF_VERSION lib/et/Makefile.in | cut '-d ' -f3) 26 COMERR_SOVERSION = $(shell grep ELF_SO_VERSION lib/et/Makefile.in | cut '-d ' -f3) 205 ( cd ${stdbuilddir}/lib/et && $(MAKE) com_err.info && \ 206 texi2html -split_chapter -expandinfo ${topdir}/lib/et/com_err.texinfo ) 244 rm -f doc/libext2fs/*.html lib/et/com_err/*.html debian/*.substvars 273 ln -s et/com_err.h ${tmpdir}/usr/include 372 $(INSTALL) -p -m 0644 ${stdbuilddir}/lib/et/com_err/*.html \ 379 $(INSTALL) -p -m 0644 ${topdir}/lib/et/com_err.texinfo \ 383 $(INSTALL) -p -m 0644 lib/ss/ss_err.et \ 384 ${stdbuilddir}/lib/ext2fs/ext2_err.et \ [all …]
|