/external/wpa_supplicant_8/src/pae/ |
D | ieee802_1x_secy_ops.c | 30 struct ieee802_1x_kay_ctx *ops; in secy_cp_control_protect_frames() local 37 ops = kay->ctx; in secy_cp_control_protect_frames() 38 if (!ops || !ops->enable_protect_frames) { in secy_cp_control_protect_frames() 44 return ops->enable_protect_frames(ops->ctx, enabled); in secy_cp_control_protect_frames() 50 struct ieee802_1x_kay_ctx *ops; in secy_cp_control_replay() local 57 ops = kay->ctx; in secy_cp_control_replay() 58 if (!ops || !ops->set_replay_protect) { in secy_cp_control_replay() 64 return ops->set_replay_protect(ops->ctx, enabled, win); in secy_cp_control_replay() 71 struct ieee802_1x_kay_ctx *ops; in secy_cp_control_current_cipher_suite() local 78 ops = kay->ctx; in secy_cp_control_current_cipher_suite() [all …]
|
/external/libnl/lib/ |
D | cache_mngt.c | 39 struct nl_cache_ops *ops; in nl_cache_ops_lookup() local 41 for (ops = cache_ops; ops; ops = ops->co_next) in nl_cache_ops_lookup() 42 if (!strcmp(ops->co_name, name)) in nl_cache_ops_lookup() 43 return ops; in nl_cache_ops_lookup() 62 struct nl_cache_ops *ops; in nl_cache_ops_associate() local 64 for (ops = cache_ops; ops; ops = ops->co_next) { in nl_cache_ops_associate() 65 if (ops->co_protocol != protocol) in nl_cache_ops_associate() 68 for (i = 0; ops->co_msgtypes[i].mt_id >= 0; i++) in nl_cache_ops_associate() 69 if (ops->co_msgtypes[i].mt_id == msgtype) in nl_cache_ops_associate() 70 return ops; in nl_cache_ops_associate() [all …]
|
D | object.c | 42 struct nl_object *nl_object_alloc(struct nl_object_ops *ops) in nl_object_alloc() argument 46 if (ops->oo_size < sizeof(*new)) in nl_object_alloc() 49 new = calloc(1, ops->oo_size); in nl_object_alloc() 56 new->ce_ops = ops; in nl_object_alloc() 57 if (ops->oo_constructor) in nl_object_alloc() 58 ops->oo_constructor(new); in nl_object_alloc() 72 struct nl_cache_ops *ops; in nl_object_alloc_name() local 74 ops = nl_cache_ops_lookup(kind); in nl_object_alloc_name() 75 if (!ops) in nl_object_alloc_name() 78 if (!(*result = nl_object_alloc(ops->co_obj_ops))) in nl_object_alloc_name() [all …]
|
D | cache.c | 70 struct nl_object_ops *ops; in nl_cache_nitems_filter() local 77 ops = cache->c_ops->co_obj_ops; in nl_cache_nitems_filter() 173 struct nl_cache *nl_cache_alloc(struct nl_cache_ops *ops) in nl_cache_alloc() argument 182 cache->c_ops = ops; in nl_cache_alloc() 189 int nl_cache_alloc_and_fill(struct nl_cache_ops *ops, struct nl_sock *sock, in nl_cache_alloc_and_fill() argument 195 if (!(cache = nl_cache_alloc(ops))) in nl_cache_alloc_and_fill() 214 struct nl_cache_ops *ops; in nl_cache_alloc_name() local 217 ops = nl_cache_ops_lookup(kind); in nl_cache_alloc_name() 218 if (!ops) in nl_cache_alloc_name() 221 if (!(cache = nl_cache_alloc(ops))) in nl_cache_alloc_name() [all …]
|
D | cache_mngr.c | 106 struct nl_cache_ops *ops; in event_input() local 124 ops = mngr->cm_assocs[i].ca_cache->c_ops; in event_input() 125 for (n = 0; ops->co_msgtypes[n].mt_id >= 0; n++) in event_input() 126 if (ops->co_msgtypes[n].mt_id == type) in event_input() 138 return nl_cache_parse(ops, NULL, nlmsg_hdr(msg), &p); in event_input() 212 struct nl_cache_ops *ops; in nl_cache_mngr_add() local 217 ops = nl_cache_ops_lookup(name); in nl_cache_mngr_add() 218 if (!ops) in nl_cache_mngr_add() 221 if (ops->co_protocol != mngr->cm_protocol) in nl_cache_mngr_add() 224 if (ops->co_groups == NULL) in nl_cache_mngr_add() [all …]
|
/external/fio/ |
D | profile.c | 11 struct profile_ops *ops = NULL; in find_profile() local 15 ops = flist_entry(n, struct profile_ops, list); in find_profile() 16 if (!strcmp(profile, ops->name)) in find_profile() 19 ops = NULL; in find_profile() 22 return ops; in find_profile() 27 struct profile_ops *ops; in load_profile() local 31 ops = find_profile(profile); in load_profile() 32 if (ops) { in load_profile() 33 if (ops->prep_cmd()) { in load_profile() 37 add_job_opts(ops->cmdline, FIO_CLIENT_TYPE_CLI); in load_profile() [all …]
|
D | ioengines.c | 25 static int check_engine_ops(struct ioengine_ops *ops) in check_engine_ops() argument 27 if (ops->version != FIO_IOOPS_VERSION) { in check_engine_ops() 28 log_err("bad ioops version %d (want %d)\n", ops->version, in check_engine_ops() 33 if (!ops->queue) { in check_engine_ops() 34 log_err("%s: no queue handler\n", ops->name); in check_engine_ops() 41 if (ops->flags & FIO_SYNCIO) in check_engine_ops() 44 if (!ops->event) { in check_engine_ops() 45 log_err("%s: no event handler\n", ops->name); in check_engine_ops() 48 if (!ops->getevents) { in check_engine_ops() 49 log_err("%s: no getevents handler\n", ops->name); in check_engine_ops() [all …]
|
/external/libnl/lib/genl/ |
D | mngt.c | 93 static int genl_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who, in genl_msg_parser() argument 102 if (ops->co_genl == NULL) in genl_msg_parser() 105 for (i = 0; i < ops->co_genl->o_ncmds; i++) { in genl_msg_parser() 106 cmd = &ops->co_genl->o_cmds[i]; in genl_msg_parser() 127 err = nlmsg_parse(nlh, ops->co_hdrsize, tb, cmd->c_maxattr, in genl_msg_parser() 132 err = cmd->c_msg_parser(ops, cmd, &info, pp); in genl_msg_parser() 141 struct genl_ops *ops; in genl_op2name() local 144 nl_list_for_each_entry(ops, &genl_ops_list, o_list) { in genl_op2name() 145 if (ops->o_family == family) { in genl_op2name() 146 for (i = 0; i < ops->o_ncmds; i++) { in genl_op2name() [all …]
|
/external/libnl/lib/route/link/ |
D | api.c | 52 struct rtnl_link_info_ops *ops; in rtnl_link_info_ops_lookup() local 54 for (ops = info_ops; ops; ops = ops->io_next) in rtnl_link_info_ops_lookup() 55 if (!strcmp(ops->io_name, name)) in rtnl_link_info_ops_lookup() 56 return ops; in rtnl_link_info_ops_lookup() 61 int rtnl_link_register_info(struct rtnl_link_info_ops *ops) in rtnl_link_register_info() argument 63 if (ops->io_name == NULL) in rtnl_link_register_info() 66 if (rtnl_link_info_ops_lookup(ops->io_name)) in rtnl_link_register_info() 69 NL_DBG(1, "Registered link info operations %s\n", ops->io_name); in rtnl_link_register_info() 71 ops->io_next = info_ops; in rtnl_link_register_info() 72 info_ops = ops; in rtnl_link_register_info() [all …]
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
D | vmw_fence.c | 104 vmw_fence_ops(struct pb_fence_ops *ops) in vmw_fence_ops() argument 106 assert(ops); in vmw_fence_ops() 107 return (struct vmw_fence_ops *)ops; in vmw_fence_ops() 239 vmw_fence_ops_fence_reference(struct pb_fence_ops *ops, in vmw_fence_ops_fence_reference() argument 243 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_reference() 254 vmw_fence_ops_fence_signalled(struct pb_fence_ops *ops, in vmw_fence_ops_fence_signalled() argument 258 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_signalled() 270 vmw_fence_ops_fence_finish(struct pb_fence_ops *ops, in vmw_fence_ops_fence_finish() argument 274 struct vmw_winsys_screen *vws = vmw_fence_ops(ops)->vws; in vmw_fence_ops_fence_finish() 288 vmw_fence_ops_destroy(struct pb_fence_ops *ops) in vmw_fence_ops_destroy() argument [all …]
|
/external/libnl/src/ |
D | nl-list-caches.c | 21 static char *id_attr_list(struct nl_object_ops *ops, char *buf, size_t len) in id_attr_list() argument 23 if (ops->oo_attrs2str != NULL) in id_attr_list() 24 return ops->oo_attrs2str(ops->oo_id_attrs, buf, len); in id_attr_list() 31 static void print(struct nl_cache_ops *ops, void *arg) in print() argument 40 ops->co_name, ops->co_hdrsize, in print() 41 nl_nlfamily2str(ops->co_protocol, buf, sizeof(buf)), in print() 42 ops->co_request_update ? "yes" : "no", in print() 43 ops->co_msg_parser ? "yes" : "no"); in print() 45 if (ops->co_obj_ops) { in print() 46 struct nl_object_ops *obj_ops = ops->co_obj_ops; in print() [all …]
|
/external/libnl/lib/route/cls/ |
D | ematch.c | 39 int rtnl_ematch_register(struct rtnl_ematch_ops *ops) in rtnl_ematch_register() argument 41 if (rtnl_ematch_lookup_ops(ops->eo_kind)) in rtnl_ematch_register() 44 nl_list_add_tail(&ops->eo_list, &ematch_ops_list); in rtnl_ematch_register() 55 int rtnl_ematch_unregister(struct rtnl_ematch_ops *ops) in rtnl_ematch_unregister() argument 60 if (ops->eo_kind == o->eo_kind) { in rtnl_ematch_unregister() 77 struct rtnl_ematch_ops *ops; in rtnl_ematch_lookup_ops() local 79 nl_list_for_each_entry(ops, &ematch_ops_list, eo_list) in rtnl_ematch_lookup_ops() 80 if (ops->eo_kind == kind) in rtnl_ematch_lookup_ops() 81 return ops; in rtnl_ematch_lookup_ops() 94 struct rtnl_ematch_ops *ops; in rtnl_ematch_lookup_ops_name() local [all …]
|
/external/regex-re2/re2/testing/ |
D | regexp_generator.cc | 34 static const char *ops[] = { in EgrepOps() local 42 static vector<string> v(ops, ops + arraysize(ops)); in EgrepOps() 48 const vector<string>& ops) in RegexpGenerator() argument 49 : maxatoms_(maxatoms), maxops_(maxops), atoms_(atoms), ops_(ops) { in RegexpGenerator() 102 int ops, int atoms) { in GeneratePostfix() argument 109 if (ops + nstk - 1 > maxops_) in GeneratePostfix() 116 GeneratePostfix(post, nstk + 1, ops, atoms + 1); in GeneratePostfix() 122 if (ops < maxops_) { in GeneratePostfix() 128 GeneratePostfix(post, nstk - nargs + 1, ops + 1, atoms); in GeneratePostfix() 138 int ops, int atoms) { in GenerateRandomPostfix() argument [all …]
|
D | exhaustive1_test.cc | 16 vector<string> ops = Split(" ", in TEST() local 20 ExhaustiveTest(3, 2, Explode("abc."), ops, in TEST() 22 ExhaustiveTest(3, 2, Explode("abc."), ops, in TEST() 28 vector<string> ops = Split(" ", in TEST() local 32 ExhaustiveTest(3, 2, Split(" ", "a (a) b"), ops, in TEST() 37 ExhaustiveTest(4, 3, Split(" ", "a (a)"), ops, in TEST()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZOperators.td | 333 def z_scmp : PatFrag<(ops node:$a, node:$b), (z_icmp node:$a, node:$b, imm), [{ 337 def z_ucmp : PatFrag<(ops node:$a, node:$b), (z_icmp node:$a, node:$b, imm), [{ 343 def z_tm_reg : PatFrag<(ops node:$a, node:$b), (z_tm node:$a, node:$b, imm)>; 344 def z_tm_mem : PatFrag<(ops node:$a, node:$b), (z_tm node:$a, node:$b, 0)>; 347 def sext8 : PatFrag<(ops node:$src), (sext_inreg node:$src, i8)>; 348 def sext16 : PatFrag<(ops node:$src), (sext_inreg node:$src, i16)>; 349 def sext32 : PatFrag<(ops node:$src), (sext (i32 node:$src))>; 353 def sext8dbl : PatFrag<(ops node:$src), (sext8 (anyext node:$src))>; 354 def sext16dbl : PatFrag<(ops node:$src), (sext16 (anyext node:$src))>; 357 def zext8 : PatFrag<(ops node:$src), (and node:$src, 0xff)>; [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | reactor_op_queue.hpp | 70 bool cancel_operations(iterator i, op_queue<operation>& ops, in cancel_operations() argument 80 ops.push(op); in cancel_operations() 93 bool cancel_operations(Descriptor descriptor, op_queue<operation>& ops, in cancel_operations() argument 97 return this->cancel_operations(operations_.find(descriptor), ops, ec); in cancel_operations() 115 bool perform_operations(iterator i, op_queue<operation>& ops) in perform_operations() argument 124 ops.push(op); in perform_operations() 138 bool perform_operations(Descriptor descriptor, op_queue<operation>& ops) in perform_operations() argument 140 return this->perform_operations(operations_.find(descriptor), ops); in perform_operations() 144 void get_all_operations(op_queue<operation>& ops) in get_all_operations() argument 150 ops.push(op_iter->second); in get_all_operations()
|
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
D | pb_buffer_fenced.c | 67 struct pb_fence_ops *ops; member 199 struct pb_fence_ops *ops = fenced_mgr->ops; in fenced_manager_dump_locked() local 226 signaled = ops->fence_signalled(ops, fenced_buf->fence, 0); in fenced_manager_dump_locked() 296 struct pb_fence_ops *ops = fenced_mgr->ops; in fenced_buffer_remove_locked() local 301 ops->fence_reference(ops, &fenced_buf->fence, NULL); in fenced_buffer_remove_locked() 333 struct pb_fence_ops *ops = fenced_mgr->ops; in fenced_buffer_finish_locked() local 348 ops->fence_reference(ops, &fence, fenced_buf->fence); in fenced_buffer_finish_locked() 352 finished = ops->fence_finish(ops, fenced_buf->fence, 0); in fenced_buffer_finish_locked() 365 ops->fence_reference(ops, &fence, NULL); in fenced_buffer_finish_locked() 399 struct pb_fence_ops *ops = fenced_mgr->ops; in fenced_manager_check_signalled_locked() local [all …]
|
/external/elfutils/tests/ |
D | addrcfi.c | 49 print_detail (int result, const Dwarf_Op *ops, size_t nops, Dwarf_Addr bias) in print_detail() argument 54 printf ("%s\n", ops == NULL ? "same_value" : "undefined"); in print_detail() 60 printf (" %s", op_name(ops[i].atom)); in print_detail() 61 if (ops[i].number2 == 0) in print_detail() 63 if (ops[i].atom == DW_OP_addr) in print_detail() 64 printf ("(%#" PRIx64 ")", ops[i].number + bias); in print_detail() 65 else if (ops[i].number != 0) in print_detail() 66 printf ("(%" PRId64 ")", ops[i].number); in print_detail() 70 ops[i].number, ops[i].number2); in print_detail() 96 Dwarf_Op *ops; in print_register() local [all …]
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUInstructions.td | 41 def InstFlag : OperandWithDefaultOps <i32, (ops (i32 0))>; 153 class PrivateMemOp <dag ops, dag frag> : PatFrag <ops, frag, [{ 158 (ops node:$ptr), (op node:$ptr) 162 (ops node:$value, node:$ptr), (op node:$value, node:$ptr) 171 def global_store : PatFrag<(ops node:$val, node:$ptr), 177 def global_load : PatFrag<(ops node:$ptr), (load node:$ptr), [{ 182 def constant_load : PatFrag<(ops node:$ptr), (load node:$ptr), [{ 186 class AZExtLoadBase <SDPatternOperator ld_node>: PatFrag<(ops node:$ptr), 195 def az_extloadi8 : PatFrag<(ops node:$ptr), (az_extload node:$ptr), [{ 199 def az_extloadi8_global : PatFrag<(ops node:$ptr), (az_extloadi8 node:$ptr), [{ [all …]
|
/external/llvm/include/llvm/Target/ |
D | TargetSelectionDAG.td | 628 class PatFrag<dag ops, dag frag, code pred = [{}], 630 dag Operands = ops; 640 class OutPatFrag<dag ops, dag frag> 641 : PatFrag<ops, frag, [{}], NOOP_SDNodeXForm>; 646 : PatFrag<(ops), frag, pred, xform>; 663 : PatFrag<(ops), (vt imm), [{}], xform> { 684 def not : PatFrag<(ops node:$in), (xor node:$in, -1)>; 685 def vnot : PatFrag<(ops node:$in), (xor node:$in, immAllOnesV)>; 686 def ineg : PatFrag<(ops node:$in), (sub 0, node:$in)>; 696 def unindexedload : PatFrag<(ops node:$ptr), (ld node:$ptr), [{ [all …]
|
/external/llvm/lib/Target/X86/ |
D | X86InstrFragmentsSIMD.td | 29 def load_mmx : PatFrag<(ops node:$ptr), (x86mmx (load node:$ptr))>; 30 def load_mvmmx : PatFrag<(ops node:$ptr), 32 def bc_mmx : PatFrag<(ops node:$in), (x86mmx (bitconvert node:$in))>; 600 let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm); 606 let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm); 617 def loadv4f32 : PatFrag<(ops node:$ptr), (v4f32 (load node:$ptr))>; 618 def loadv2f64 : PatFrag<(ops node:$ptr), (v2f64 (load node:$ptr))>; 619 def loadv2i64 : PatFrag<(ops node:$ptr), (v2i64 (load node:$ptr))>; 623 def loadv8f32 : PatFrag<(ops node:$ptr), (v8f32 (load node:$ptr))>; 624 def loadv4f64 : PatFrag<(ops node:$ptr), (v4f64 (load node:$ptr))>; [all …]
|
/external/libnl/src/cls/ |
D | utils.c | 75 struct cls_module *lookup_cls_mod(struct rtnl_cls_ops *ops) in lookup_cls_mod() argument 80 if (mod->ops == ops) in lookup_cls_mod() 89 struct rtnl_cls_ops *ops; in register_cls_module() local 91 if (!(ops = __rtnl_cls_lookup_ops(mod->name))) in register_cls_module() 95 if (lookup_cls_mod(ops) != NULL) in register_cls_module() 98 mod->ops = ops; in register_cls_module()
|
/external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/cc/ |
D | picture_ops_list_view.css | 6 * * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view { 12 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view { 17 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view .list-item { 25 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > 31 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > 40 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > 47 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > 52 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view .x-list-view:focus > 59 * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view .x-list-view >
|
/external/google-breakpad/src/common/dwarf/ |
D | dwarf2reader.cc | 1428 Operands ops; in DoInstruction() local 1449 if (!ParseOperands("o", &ops) || in DoInstruction() 1450 !DoOffset(opcode & 0x3f, ops.offset * cie->data_alignment_factor)) in DoInstruction() 1471 if (!ParseOperands("a", &ops)) return false; in DoInstruction() 1472 address_ = ops.offset; in DoInstruction() 1477 if (!ParseOperands("1", &ops)) return false; in DoInstruction() 1478 address_ += ops.offset * cie->code_alignment_factor; in DoInstruction() 1483 if (!ParseOperands("2", &ops)) return false; in DoInstruction() 1484 address_ += ops.offset * cie->code_alignment_factor; in DoInstruction() 1489 if (!ParseOperands("4", &ops)) return false; in DoInstruction() [all …]
|
/external/v8/test/cctest/compiler/ |
D | test-js-typed-lowering.cc | 282 const Operator* ops[] = { in TEST_WITH_STRONG() local 301 for (size_t k = 0; k < arraysize(ops); k += 2) { in TEST_WITH_STRONG() 302 Node* add = R.Binop(ops[k], p0, p1); in TEST_WITH_STRONG() 305 R.CheckBinop(ops[k + 1], r); in TEST_WITH_STRONG() 343 const Operator* ops[kNumberOps]; member in v8::internal::compiler::JSBitwiseShiftTypedLoweringTester 349 ops[idx] = op; in set() 372 Node* add = R.Binop(R.ops[k], p0, p1); in TEST() 375 R.CheckBinop(R.ops[k + 1], r); in TEST() 401 const Operator* ops[kNumberOps]; member in v8::internal::compiler::JSBitwiseTypedLoweringTester 407 ops[idx] = op; in set() [all …]
|