Searched refs:ec (Results 1 - 25 of 262) sorted by relevance

1234567891011

/freebsd-10.1-release/crypto/heimdal/lib/krb5/
H A Dkrb_err.et11 ec KSUCCESS, "Kerberos 4 successful"
12 ec KDC_NAME_EXP, "Kerberos 4 principal expired"
13 ec KDC_SERVICE_EXP, "Kerberos 4 service expired"
14 ec KDC_AUTH_EXP, "Kerberos 4 auth expired"
15 ec KDC_PKT_VER, "Incorrect Kerberos 4 master key version"
16 ec KDC_P_MKEY_VER, "Incorrect Kerberos 4 master key version"
17 ec KDC_S_MKEY_VER, "Incorrect Kerberos 4 master key version"
18 ec KDC_BYTE_ORDER, "Kerberos 4 byte order unknown"
19 ec KDC_PR_UNKNOWN, "Kerberos 4 principal unknown"
20 ec KDC_PR_N_UNIQU
[all...]
/freebsd-10.1-release/usr.bin/csup/
H A Ddiff.c83 struct editcmd ec; local
89 memset(&ec, 0, sizeof(ec));
92 ec.di = di;
93 ec.keyword = keyword;
94 ec.orig = orig;
95 ec.dest = dest;
110 error = diff_geteditcmd(&ec, line);
114 if (ec.cmd == EC_ADD) {
115 error = diff_copyln(&ec, e
167 struct editcmd *ec, *nextec; local
212 diff_insert_edit(struct diffstart *ds, struct editcmd *ec) argument
241 struct editcmd *ec; local
259 struct editcmd ec, *addec, *delec; local
355 diff_geteditcmd(struct editcmd *ec, char *line) argument
389 diff_copyln(struct editcmd *ec, lineno_t to) argument
406 diff_ignoreln(struct editcmd *ec, lineno_t to) argument
422 diff_write(struct editcmd *ec, void *buf, size_t size) argument
[all...]
/freebsd-10.1-release/lib/libelf/
H A Dgelf_checksum.c50 int ec; local
52 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
56 return (_libelf_checksum(e, ec));
H A Dlibelf_shdr.c36 _libelf_getshdr(Elf_Scn *s, int ec) argument
46 if (ec == ELFCLASSNONE)
47 ec = e->e_class;
49 if (ec != e->e_class) {
H A Delf_phnum.c39 int ec; local
42 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
47 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL)
H A Delf_shnum.c39 int ec; local
42 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
47 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL)
H A Delf_shstrndx.c39 int ec; local
42 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64)) {
47 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL)
71 int ec; local
74 ((ec = e->e_class) != ELFCLASS32 && ec != ELFCLASS64) ||
75 ((eh = _libelf_ehdr(e, ec, 0)) == NULL)) {
80 return (_libelf_setshstrndx(e, eh, ec, strndx));
H A Dgelf_cap.c43 int ec; local
58 ec = e->e_class;
59 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
61 if (ec == ELFCLASS32)
71 msz = _libelf_msize(ELF_T_CAP, ec, e->e_version);
80 if (ec == ELFCLASS32) {
100 int ec; local
115 ec = e->e_class;
116 assert(ec
[all...]
H A Dgelf_dyn.c40 int ec; local
55 ec = e->e_class;
56 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
58 if (ec == ELFCLASS32)
68 msz = _libelf_msize(ELF_T_DYN, ec, e->e_version);
77 if (ec == ELFCLASS32) {
96 int ec; local
111 ec = e->e_class;
112 assert(ec
[all...]
H A Dgelf_syminfo.c43 int ec; local
58 ec = e->e_class;
59 assert(ec == ELFCLASS32 || ec == ELFCLASS64);
61 if (ec == ELFCLASS32)
71 msz = _libelf_msize(ELF_T_SYMINFO, ec, e->e_version);
80 if (ec == ELFCLASS32) {
100 int ec; local
115 ec = e->e_class;
116 assert(ec
[all...]
H A Dlibelf_extended.c50 _libelf_setshnum(Elf *e, void *eh, int ec, size_t shnum) argument
60 if (ec == ELFCLASS32)
70 if (ec == ELFCLASS32)
80 _libelf_setshstrndx(Elf *e, void *eh, int ec, size_t shstrndx) argument
90 if (ec == ELFCLASS32)
100 if (ec == ELFCLASS32)
109 _libelf_setphnum(Elf *e, void *eh, int ec, size_t phnum) argument
119 if (ec == ELFCLASS32)
129 if (ec == ELFCLASS32)
/freebsd-10.1-release/contrib/llvm/lib/Object/
H A DObject.cpp85 error_code ec; local
86 unwrap(SI)->increment(ec);
87 if (ec) report_fatal_error("LLVMMoveToNextSection failed: " + ec.message());
92 if (error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
93 report_fatal_error(ec.message());
112 error_code ec; local
113 unwrap(SI)->increment(ec);
114 if (ec) report_fatal_error("LLVMMoveToNextSymbol failed: " + ec
170 error_code ec; local
[all...]
H A DELFObjectFile.cpp23 error_code ec; local
31 return new ELFObjectFile<ELFType<support::little, 4, false> >(Object, ec);
35 return new ELFObjectFile<ELFType<support::little, 2, false> >(Object, ec);
41 return new ELFObjectFile<ELFType<support::big, 4, false> >(Object, ec);
45 return new ELFObjectFile<ELFType<support::big, 2, false> >(Object, ec);
51 return new ELFObjectFile<ELFType<support::big, 8, true> >(Object, ec);
55 return new ELFObjectFile<ELFType<support::big, 2, true> >(Object, ec);
61 return new ELFObjectFile<ELFType<support::little, 8, true> >(Object, ec);
65 return new ELFObjectFile<ELFType<support::little, 2, true> >(Object, ec);
/freebsd-10.1-release/bin/pkill/tests/
H A Dpkill-P_test.sh15 ec=$?
16 case $ec in
H A Dpkill-LF_test.sh15 ec=$?
16 case $ec in
31 ec=$?
32 case $ec in
H A Dpkill-U_test.sh15 ec=$?
16 case $ec in
33 ec=$?
34 case $ec in
H A Dpkill-_g_test.sh15 ec=$?
16 case $ec in
33 ec=$?
34 case $ec in
H A Dpkill-g_test.sh15 ec=$?
16 case $ec in
32 ec=$?
33 case $ec in
H A Dpkill-s_test.sh15 ec=$?
16 case $ec in
32 ec=$?
33 case $ec in
H A Dpkill-t_test.sh24 ec=$?
25 case $ec in
36 ec=$?
37 case $ec in
/freebsd-10.1-release/crypto/openssl/crypto/cms/
H A Dcms_enc.c70 BIO *cms_EncryptedContent_init_bio(CMS_EncryptedContentInfo *ec)
75 X509_ALGOR *calg = ec->contentEncryptionAlgorithm;
84 enc = ec->cipher ? 1 : 0;
95 ciph = ec->cipher;
99 if (ec->key)
100 ec->cipher = NULL;
133 if (!enc || !ec->key) {
143 if (!ec->key) {
144 ec->key = tkey;
145 ec
213 cms_EncryptedContent_init(CMS_EncryptedContentInfo *ec, const EVP_CIPHER *cipher, const unsigned char *key, size_t keylen) argument
233 CMS_EncryptedContentInfo *ec; local
[all...]
/freebsd-10.1-release/contrib/com_err/
H A Dparse.y119 struct error_code *ec = malloc(sizeof(*ec));
121 if (ec == NULL)
124 ec->next = NULL;
125 ec->number = number;
127 asprintf (&ec->name, "%s%s", prefix, $2);
128 if (ec->name == NULL)
132 ec->name = $2;
133 ec->string = $4;
134 APPEND(codes, ec);
[all...]
/freebsd-10.1-release/crypto/heimdal/lib/com_err/
H A Dparse.y119 struct error_code *ec = malloc(sizeof(*ec));
121 if (ec == NULL)
124 ec->next = NULL;
125 ec->number = number;
127 asprintf (&ec->name, "%s%s", prefix, $2);
128 if (ec->name == NULL)
132 ec->name = $2;
133 ec->string = $4;
134 APPEND(codes, ec);
[all...]
/freebsd-10.1-release/contrib/libc++/src/
H A Dmutex.cpp30 int ec = pthread_mutex_lock(&__m_); local
31 if (ec)
32 __throw_system_error(ec, "mutex lock failed");
44 int ec = pthread_mutex_unlock(&__m_); variable
45 (void)ec; variable
46 assert(ec == 0);
54 int ec = pthread_mutexattr_init(&attr); local
55 if (ec)
57 ec = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
58 if (ec)
90 int ec = pthread_mutex_lock(&__m_); local
[all...]
H A Dcondition_variable.cpp40 int ec = pthread_cond_wait(&__cv_, lk.mutex()->native_handle()); local
41 if (ec)
42 __throw_system_error(ec, "condition_variable wait failed");
70 int ec = pthread_cond_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); local
71 if (ec != 0 && ec != ETIMEDOUT)
72 __throw_system_error(ec, "condition_variable timed_wait failed");

Completed in 211 milliseconds

1234567891011