Searched defs:ic (Results 1 - 17 of 17) sorted by relevance

/osnet-11/usr/src/lib/libilb/common/
H A Dilb_comm.c156 * If ic is non-NULL, it means that the caller wants to send something
157 * to ilbd and expects a reply. If ic is NULL, it means that the caller
168 i_ilb_do_comm(ilb_handle_t h, ilb_comm_t *ic, size_t ic_sz, ilb_comm_t *rbuf, argument
204 r = send(s, ic, ic_sz, 0);
H A Dilb_hc.c44 ilb_comm_t *ic; local
52 if ((ic = i_ilb_alloc_req(ILBD_CREATE_HC, &ic_sz)) == NULL)
55 (void) memcpy(&ic->ic_data, hc, sizeof (ilb_hc_info_t));
57 rc = i_ilb_do_comm(h, ic, ic_sz, ic, &ic_sz);
61 if (ic->ic_cmd != ILBD_CMD_OK)
62 rc = *(ilb_status_t *)&ic->ic_data;
65 free(ic);
77 ilb_comm_t *ic; local
83 if ((ic
107 ilb_comm_t *ic, *rbuf; local
148 ilb_comm_t ic, *rbuf; local
192 ilb_comm_t *ic, *tmp_rbuf; local
[all...]
H A Dilb_rules.c98 ilb_comm_t *ic; local
105 if ((ic = i_ilb_alloc_req(ILBD_CREATE_RULE, &ic_sz)) == NULL)
107 rl = (ilb_rule_info_t *)&ic->ic_data;
138 rc = i_ilb_do_comm(h, ic, ic_sz, ic, &ic_sz);
142 if (ic->ic_cmd != ILBD_CMD_OK)
143 rc = *(ilb_status_t *)&ic->ic_data;
146 free(ic);
154 ilb_comm_t *ic; local
160 if ((ic
204 ilb_comm_t ic, *tmp_rbuf; local
234 ilb_comm_t *ic, *rbuf; local
[all...]
H A Dilb_sg.c40 ilb_comm_t *ic; local
49 if ((ic = i_ilb_alloc_req(cmd, &ic_sz)) == NULL)
52 (void) strlcpy((char *)&ic->ic_data, sgname, sizeof (ilbd_name_t));
54 rc = i_ilb_do_comm(h, ic, ic_sz, ic, &ic_sz);
58 if (ic->ic_cmd != ILBD_CMD_OK)
59 rc = *(ilb_status_t *)&ic->ic_data;
61 free(ic);
85 ilb_comm_t *ic; local
96 if ((ic
151 ilb_comm_t ic, *tmp_rbuf; local
178 ilb_comm_t *ic, *tmp_rbuf; local
332 ilb_comm_t *ic; local
398 ilb_comm_t *ic; local
[all...]
H A Dilb_subr.c374 ilb_comm_t *ic; local
416 if ((ic = calloc(1, sz)) == NULL)
420 ic->ic_cmd = cmd;
421 ic->ic_flags = 0;
422 return (ic);
/osnet-11/usr/src/lib/libast/common/regex/
H A Dregdecomp.c86 unsigned char ic[2*UCHAR_MAX]; local
155 t = ic;
225 if ((t - ic + 1) < (s - nc + (nc[0] == '^')))
238 sfwrite(sp, ic, t - ic);
H A Dregcomp.c1033 col(Celt_t* ce, int ic, unsigned char* bp, int bw, int bc, unsigned char* ep, int ew, int ec) argument
1051 if (ic)
1069 if (ic)
1107 if (ic)
1125 if (ic)
1162 if (!ic || !cc)
1164 ic = 0;
1189 int ic; local
1473 if (ic = env->flags & REG_ICASE)
1539 ce = col(ce, ic, r
[all...]
H A Dregnexec.c657 int ic; local
661 ic = (rex->flags & REG_ICASE);
676 if (ic && isupper(c))
691 if (ic && isupper(c))
707 if (ic ? collic(rex->re.collate.elements, (char*)key, (char*)key, c, x) : collelt(rex->re.collate.elements, (char*)key, c, x))
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_crypt.c123 int ic, i, k, temp; local
148 ic = (random&MASK)%(k+1);
151 t1[k] = t1[ic];
152 t1[ic] = temp;
154 ic = (random&MASK) % k;
155 while (t3[ic] != 0) ic = (ic + 1) % k;
156 t3[k] = ic;
157 t3[ic]
[all...]
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dunistr.c85 * @ic: ignore case bool
86 * @upcase: upcase table (only if @ic == IGNORE_CASE)
90 * identical, or FALSE (0) if they are not identical. If @ic is IGNORE_CASE,
95 const IGNORE_CASE_BOOL ic,
102 if (ic == CASE_SENSITIVE)
115 * @ic: either CASE_SENSITIVE or IGNORE_CASE
116 * @upcase: upcase table (ignored if @ic is CASE_SENSITIVE)
117 * @upcase_len: upcase table size (ignored if @ic is CASE_SENSITIVE)
131 const IGNORE_CASE_BOOL ic, const ntfschar *upcase,
138 if (!name1 || !name2 || (ic
93 ntfs_names_are_equal(const ntfschar *s1, size_t s1_len, const ntfschar *s2, size_t s2_len, const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_size) argument
128 ntfs_names_collate(const ntfschar *name1, const u32 name1_len, const ntfschar *name2, const u32 name2_len, const int err_val __attribute__((unused)), const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_len) argument
365 ntfs_file_values_compare(const FILE_NAME_ATTR *file_name_attr1, const FILE_NAME_ATTR *file_name_attr2, const int err_val, const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_len) argument
[all...]
H A Dattrib.c1605 * @ic: IGNORE_CASE or CASE_SENSITIVE (ignored if @name not present)
1644 * If @ic is IGNORE_CASE, the @name comparison is not case sensitive and
1647 * the upcase table. If @ic is CASE_SENSITIVE, the comparison is case
1671 const u32 name_len, const IGNORE_CASE_BOOL ic,
1735 a->name_length, ic, upcase, upcase_len)) {
1809 * @ic: IGNORE_CASE or CASE_SENSITIVE (ignored if @name not present)
1875 const u32 name_len, const IGNORE_CASE_BOOL ic,
2020 name, name_len, ic, vol->upcase,
2176 return ntfs_attr_find(AT_END, name, name_len, ic, val, val_len,
2211 ret = ntfs_attr_find(type, name, name_len, ic, va
1670 ntfs_attr_find(const ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
1874 ntfs_external_attr_find(ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const VCN lowest_vcn, const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
2285 ntfs_attr_lookup(const ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const VCN lowest_vcn, const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
[all...]
/osnet-11/usr/src/lib/libnisdb/
H A Ddb_mindex3.cc729 int ic = 1+ qc[j].which_index; local
730 if (ic < 1 || ic > t->numColumns)
734 ec[ic].ec_flags =
735 entryFlagsFromTable(tc[ic-1].tc_flags);
745 &ec[ic].ec_value.ec_value_val,
746 (int *)&ec[ic].ec_value.ec_value_len);
H A Dldap_nisdbquery.c638 int ic, c; local
652 ic = query[k]->components.
659 if (ic >= t->numColumns)
666 for (c = 0; c < ic; c++) {
674 if (c >= ic) {
679 components_val[ic].
689 components_val[ic].
694 components_val[ic].
H A Dldap_ruleval.c439 int ic; local
/osnet-11/usr/src/lib/libcmd/common/
H A Dod.c1277 register iconv_list_t* ic; local
1285 for (ic = iconv_list(NiL); ic; ic = iconv_list(ic))
1286 if (ic->ccode >= 0)
1287 n += sfprintf(sp, "[%c:%s?%s]", ic->match[ic->match[0] == '('], ic->name, ic
[all...]
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dmkntfs.c832 * @ic: IGNORE_CASE or CASE_SENSITIVE (ignored if @name not present)
871 * If @ic is IGNORE_CASE, the @name comparison is not case sensitive and
874 * the upcase table. If @ic is CASE_SENSITIVE, the comparison is case
898 const u32 name_len, const IGNORE_CASE_BOOL ic,
947 a->name_length, ic, upcase, upcase_len)) {
1021 * @ic: IGNORE_CASE or CASE_SENSITIVE (ignored if @name not present)
1083 const u32 name_len, const IGNORE_CASE_BOOL ic,
1098 return mkntfs_attr_find(type, name, name_len, ic, val, val_len,
1115 const IGNORE_CASE_BOOL ic, const ATTR_FLAGS flags,
1143 if (ic
897 mkntfs_attr_find(const ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
1082 mkntfs_attr_lookup(const ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const VCN lowest_vcn __attribute__((unused)), const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
1113 insert_positioned_attr_in_mft_record(MFT_RECORD *m, const ATTR_TYPES type, const char *name, u32 name_len, const IGNORE_CASE_BOOL ic, const ATTR_FLAGS flags, const runlist *rl, const u8 *val, const s64 val_len) argument
1296 insert_non_resident_attr_in_mft_record(MFT_RECORD *m, const ATTR_TYPES type, const char *name, u32 name_len, const IGNORE_CASE_BOOL ic, const ATTR_FLAGS flags, const u8 *val, const s64 val_len) argument
1484 insert_resident_attr_in_mft_record(MFT_RECORD *m, const ATTR_TYPES type, const char *name, u32 name_len, const IGNORE_CASE_BOOL ic, const ATTR_FLAGS flags, const RESIDENT_ATTR_FLAGS res_flags, const u8 *val, const u32 val_len) argument
1768 add_attr_data(MFT_RECORD *m, const char *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const ATTR_FLAGS flags, const u8 *val, const s64 val_len) argument
1808 add_attr_data_positioned(MFT_RECORD *m, const char *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const ATTR_FLAGS flags, const runlist *rl, const u8 *val, const s64 val_len) argument
1885 add_attr_index_root(MFT_RECORD *m, const char *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const ATTR_TYPES indexed_attr_type, const COLLATION_RULES collation_rule, const u32 index_block_size) argument
1966 add_attr_index_alloc(MFT_RECORD *m, const char *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const u8 *index_alloc_val, const u32 index_alloc_val_len) argument
1985 add_attr_bitmap(MFT_RECORD *m, const char *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const u8 *bitmap, const u32 bitmap_len) argument
2014 add_attr_bitmap_positioned(MFT_RECORD *m, const char *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const runlist *rl, const u8 *bitmap, const u32 bitmap_len) argument
2038 upgrade_to_large_index(MFT_RECORD *m, const char *name, u32 name_len, const IGNORE_CASE_BOOL ic, INDEX_ALLOCATION **idx) argument
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dvia-rhine.c462 unsigned long ic:1; member in struct:rhine_tx_desc::VTC_tx_ctrl_tag::__anon287

Completed in 1063 milliseconds