Symbol: deref
usr/src/cmd/ldap/common/ldapdelete.c
104
deref = LDAP_DEREF_NEVER; /* prudent, but probably unnecessary */
usr/src/cmd/ldap/common/ldapdelete.c
105
ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
usr/src/cmd/ldap/common/ldapdelete.c
71
int rc, deref, optind;
usr/src/cmd/ldap/common/ldapmodify.c
242
int rc, use_ldif, deref;
usr/src/cmd/ldap/common/ldapmodify.c
252
deref = LDAP_DEREF_NEVER; /* this seems prudent */
usr/src/cmd/ldap/common/ldapmodify.c
253
ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
usr/src/cmd/ldap/common/ldapmodrdn.c
115
deref = LDAP_DEREF_NEVER; /* this seems prudent */
usr/src/cmd/ldap/common/ldapmodrdn.c
116
ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
usr/src/cmd/ldap/common/ldapmodrdn.c
40
int rc, havedn, deref, optind;
usr/src/cmd/ldap/common/ldapsearch.c
138
static int includeufn, allow_binary, vals2tmp, ldif, scope, deref;
usr/src/cmd/ldap/common/ldapsearch.c
168
deref = LDAP_DEREF_NEVER;
usr/src/cmd/ldap/common/ldapsearch.c
270
ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
usr/src/cmd/ldap/common/ldapsearch.c
421
deref = LDAP_DEREF_NEVER;
usr/src/cmd/ldap/common/ldapsearch.c
423
deref = LDAP_DEREF_SEARCHING;
usr/src/cmd/ldap/common/ldapsearch.c
425
deref = LDAP_DEREF_FINDING;
usr/src/cmd/ldap/common/ldapsearch.c
427
deref = LDAP_DEREF_ALWAYS;
usr/src/cmd/mdb/common/mdb/mdb_print.c
2014
if (deref(pap, size) != 0)
usr/src/cmd/mdb/common/mdb/mdb_print.c
2048
if (deref(pap, size) != 0)
usr/src/lib/libadutils/common/ldap_ping.c
132
int scope = LDAP_SCOPE_BASE, deref = LDAP_DEREF_NEVER,
usr/src/lib/libadutils/common/ldap_ping.c
180
LDAP_REQ_SEARCH, basedn, scope, deref,
usr/src/tools/smatch/src/check_implicit_dependencies.c
156
sym = get_type(expr->deref);
usr/src/tools/smatch/src/check_implicit_dependencies.c
191
sym = get_type(expr->deref);
usr/src/tools/smatch/src/check_kernel.c
340
expr = expr->deref;
usr/src/tools/smatch/src/check_kernel.c
399
dest = dest->deref;
usr/src/tools/smatch/src/check_memcpy_overflow.c
51
struct expression *deref;
usr/src/tools/smatch/src/check_memcpy_overflow.c
65
deref = expr->deref;
usr/src/tools/smatch/src/check_memcpy_overflow.c
66
if (deref->type == EXPR_PREOP && deref->op == '*')
usr/src/tools/smatch/src/check_memcpy_overflow.c
67
deref = deref->unop;
usr/src/tools/smatch/src/check_memcpy_overflow.c
68
struct_bytes = get_array_size_bytes_max(deref);
usr/src/tools/smatch/src/check_memcpy_overflow.c
70
type = get_type(expr->deref);
usr/src/tools/smatch/src/dissect.c
426
p_type = do_expression(p_mode, expr->deref);
usr/src/tools/smatch/src/evaluate.c
2064
struct expression *deref = expr->deref, *add;
usr/src/tools/smatch/src/evaluate.c
2069
if (!evaluate_expression(deref))
usr/src/tools/smatch/src/evaluate.c
2076
ctype = deref->ctype;
usr/src/tools/smatch/src/evaluate.c
2082
combine_address_space(deref->pos, &address_space, ctype->ctype.as);
usr/src/tools/smatch/src/evaluate.c
2116
if (!lvalue_expression(deref)) {
usr/src/tools/smatch/src/evaluate.c
2117
if (deref->type != EXPR_SLICE) {
usr/src/tools/smatch/src/evaluate.c
2118
expr->base = deref;
usr/src/tools/smatch/src/evaluate.c
2121
expr->base = deref->base;
usr/src/tools/smatch/src/evaluate.c
2122
expr->r_bitpos = deref->r_bitpos;
usr/src/tools/smatch/src/evaluate.c
2132
deref = deref->unop;
usr/src/tools/smatch/src/evaluate.c
2133
expr->deref = deref;
usr/src/tools/smatch/src/evaluate.c
2135
add = evaluate_offset(deref, offset);
usr/src/tools/smatch/src/expression.c
508
struct expression *deref = alloc_expression(token->pos, EXPR_PREOP);
usr/src/tools/smatch/src/expression.c
511
deref->op = '*';
usr/src/tools/smatch/src/expression.c
512
deref->unop = add;
usr/src/tools/smatch/src/expression.c
518
expr = deref;
usr/src/tools/smatch/src/expression.c
539
struct expression *deref = alloc_expression(token->pos, EXPR_DEREF);
usr/src/tools/smatch/src/expression.c
540
deref->op = '.';
usr/src/tools/smatch/src/expression.c
541
deref->deref = expr;
usr/src/tools/smatch/src/expression.c
547
deref->member = token->ident;
usr/src/tools/smatch/src/expression.c
548
deref->member_offset = -1;
usr/src/tools/smatch/src/expression.c
550
expr = deref;
usr/src/tools/smatch/src/expression.h
190
struct expression *deref;
usr/src/tools/smatch/src/inline.c
150
struct expression *deref = copy_expression(expr->deref);
usr/src/tools/smatch/src/inline.c
152
expr->deref = deref;
usr/src/tools/smatch/src/smatch_address.c
137
type = get_type(expr->deref);
usr/src/tools/smatch/src/smatch_container_of.c
109
expr = expr->deref;
usr/src/tools/smatch/src/smatch_container_of.c
124
expr = expr->deref;
usr/src/tools/smatch/src/smatch_container_of.c
146
expr = expr->deref;
usr/src/tools/smatch/src/smatch_expressions.c
64
struct expression *member_expression(struct expression *deref, int op, struct ident *member)
usr/src/tools/smatch/src/smatch_expressions.c
68
expr = alloc_tmp_expression(deref->pos, EXPR_DEREF);
usr/src/tools/smatch/src/smatch_expressions.c
70
expr->deref = deref;
usr/src/tools/smatch/src/smatch_extra.c
104
struct expression *deref, *member_expr;
usr/src/tools/smatch/src/smatch_extra.c
123
deref = strip_expr(expr->deref);
usr/src/tools/smatch/src/smatch_extra.c
124
type = get_type(deref);
usr/src/tools/smatch/src/smatch_extra.c
153
member_expr = deref;
usr/src/tools/smatch/src/smatch_extra.c
372
expr = strip_expr(expr->deref);
usr/src/tools/smatch/src/smatch_extra.h
212
struct expression *member_expression(struct expression *deref, int op, struct ident *member);
usr/src/tools/smatch/src/smatch_flow.c
1377
struct expression *deref, *assign, *tmp, *right;
usr/src/tools/smatch/src/smatch_flow.c
1401
deref = NULL;
usr/src/tools/smatch/src/smatch_flow.c
1407
if (deref)
usr/src/tools/smatch/src/smatch_flow.c
1408
deref = member_expression(deref, '.', member);
usr/src/tools/smatch/src/smatch_flow.c
1410
deref = member_expression(symbol, '.', member);
usr/src/tools/smatch/src/smatch_flow.c
1414
deref = member_expression(symbol, '.', member);
usr/src/tools/smatch/src/smatch_flow.c
1419
type = get_type(deref);
usr/src/tools/smatch/src/smatch_flow.c
1421
fake_element_assigns_helper(deref, right->expr_list, fake_cb);
usr/src/tools/smatch/src/smatch_flow.c
1423
fake_member_assigns_helper(deref, right->expr_list, fake_cb);
usr/src/tools/smatch/src/smatch_flow.c
1425
assign = assign_expression(deref, '=', right);
usr/src/tools/smatch/src/smatch_flow.c
479
expr_set_parent_expr(expr->deref, expr);
usr/src/tools/smatch/src/smatch_flow.c
482
__split_expr(expr->deref);
usr/src/tools/smatch/src/smatch_helper.c
187
struct expression *deref;
usr/src/tools/smatch/src/smatch_helper.c
190
deref = expr->deref;
usr/src/tools/smatch/src/smatch_helper.c
191
op = deref->op;
usr/src/tools/smatch/src/smatch_helper.c
192
if (deref->type == EXPR_PREOP && op == '*') {
usr/src/tools/smatch/src/smatch_helper.c
193
struct expression *unop = strip_expr(deref->unop);
usr/src/tools/smatch/src/smatch_helper.c
196
deref = unop->unop;
usr/src/tools/smatch/src/smatch_helper.c
199
if (!is_pointer(deref) && !is_pointer(deref->unop))
usr/src/tools/smatch/src/smatch_helper.c
201
deref = deref->unop;
usr/src/tools/smatch/src/smatch_helper.c
205
__get_variable_from_expr(sym_ptr, buf, deref, len, complicated);
usr/src/tools/smatch/src/smatch_helper.c
526
return get_complication_score(expr->deref);
usr/src/tools/smatch/src/smatch_helper.c
888
sym = get_type(expr->deref);
usr/src/tools/smatch/src/smatch_helper.c
912
sym = get_type(expr->deref);
usr/src/tools/smatch/src/smatch_helper.c
922
struct expression *deref;
usr/src/tools/smatch/src/smatch_helper.c
933
deref = expr->deref;
usr/src/tools/smatch/src/smatch_helper.c
934
if (deref->type != EXPR_DEREF || !deref->member)
usr/src/tools/smatch/src/smatch_helper.c
936
sym = get_type(deref->deref);
usr/src/tools/smatch/src/smatch_helper.c
943
deref = deref->deref;
usr/src/tools/smatch/src/smatch_helper.c
944
if (deref->type == EXPR_PREOP && deref->op == '*')
usr/src/tools/smatch/src/smatch_helper.c
945
deref = deref->unop;
usr/src/tools/smatch/src/smatch_helper.c
946
outer = expr_to_str(deref);
usr/src/tools/smatch/src/smatch_kernel_user_data.c
393
sym = expr_to_sym(expr->deref);
usr/src/tools/smatch/src/smatch_mtag.c
367
expr = strip_expr(expr->deref);
usr/src/tools/smatch/src/smatch_mtag_data.c
99
type = get_type(expr->deref);
usr/src/tools/smatch/src/smatch_recurse.c
65
ret = recurse(expr->deref, func, param, nr);
usr/src/tools/smatch/src/smatch_type.c
151
sym = get_type(expr->deref);
usr/src/tools/smatch/src/smatch_var_sym.c
65
return expr_to_vsl(expr->deref);
usr/src/tools/smatch/src/validation/type1.c
22
return deref(arg->array);