Searched refs:ops (Results 1 - 25 of 237) sorted by relevance

12345678910

/freebsd-9.3-release/contrib/gdb/gdb/
H A Dauxv.h38 extern LONGEST target_auxv_read (struct target_ops *ops, char **data);
44 extern int target_auxv_parse (struct target_ops *ops,
52 extern int target_auxv_search (struct target_ops *ops,
56 extern int fprint_target_auxv (struct ui_file *file, struct target_ops *ops);
66 extern LONGEST procfs_xfer_auxv (struct target_ops *ops,
H A Dser-pipe.c140 struct serial_ops *ops = XMALLOC (struct serial_ops); local
141 memset (ops, 0, sizeof (struct serial_ops));
142 ops->name = "pipe";
143 ops->next = 0;
144 ops->open = pipe_open;
145 ops->close = pipe_close;
146 ops->readchar = ser_unix_readchar;
147 ops->write = ser_unix_write;
148 ops->flush_output = ser_unix_nop_flush_output;
149 ops
[all...]
H A Dser-tcp.c210 struct serial_ops *ops = XMALLOC (struct serial_ops); local
211 memset (ops, 0, sizeof (struct serial_ops));
212 ops->name = "tcp";
213 ops->next = 0;
214 ops->open = net_open;
215 ops->close = net_close;
216 ops->readchar = ser_unix_readchar;
217 ops->write = ser_unix_write;
218 ops->flush_output = ser_unix_nop_flush_output;
219 ops
[all...]
H A Dserial.c155 struct serial_ops *ops;
157 for (ops = serial_ops_list; ops; ops = ops->next)
158 if (strcmp (name, ops->name) == 0)
159 return ops;
177 struct serial_ops *ops;
188 ops = serial_interface_lookup ("pc");
190 ops
153 struct serial_ops *ops; local
175 struct serial_ops *ops; local
240 struct serial_ops *ops; local
[all...]
/freebsd-9.3-release/sys/dev/mii/
H A Dmii_bitbang.c49 static void mii_bitbang_sendbits(device_t dev, mii_bitbang_ops_t ops,
54 ops->mbo_write(dev, (x)); \
58 #define MREAD ops->mbo_read(dev)
60 #define MDO ops->mbo_bits[MII_BIT_MDO]
61 #define MDI ops->mbo_bits[MII_BIT_MDI]
62 #define MDC ops->mbo_bits[MII_BIT_MDC]
63 #define MDIRPHY ops->mbo_bits[MII_BIT_DIR_HOST_PHY]
64 #define MDIRHOST ops->mbo_bits[MII_BIT_DIR_PHY_HOST]
72 mii_bitbang_sync(device_t dev, mii_bitbang_ops_t ops) argument
92 mii_bitbang_sendbits(device_t dev, mii_bitbang_ops_t ops, uint32_ argument
118 mii_bitbang_readreg(device_t dev, mii_bitbang_ops_t ops, int phy, int reg) argument
166 mii_bitbang_writereg(device_t dev, mii_bitbang_ops_t ops, int phy, int reg, int val) argument
[all...]
H A Dmii_bitbang.h50 int mii_bitbang_readreg(device_t dev, mii_bitbang_ops_t ops,
52 void mii_bitbang_sync(device_t dev, mii_bitbang_ops_t ops);
53 void mii_bitbang_writereg(device_t dev, mii_bitbang_ops_t ops,
/freebsd-9.3-release/sys/dev/e1000/
H A De1000_api.c48 if (hw->mac.ops.init_params) {
49 ret_val = hw->mac.ops.init_params(hw);
74 if (hw->nvm.ops.init_params) {
75 ret_val = hw->nvm.ops.init_params(hw);
100 if (hw->phy.ops.init_params) {
101 ret_val = hw->phy.ops.init_params(hw);
126 if (hw->mbx.ops.init_params) {
127 ret_val = hw->mbx.ops.init_params(hw);
504 if (hw->mac.ops.get_bus_info)
505 return hw->mac.ops
[all...]
H A De1000_82541.c98 phy->ops.check_polarity = e1000_check_polarity_igp;
99 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_igp;
100 phy->ops.get_cable_length = e1000_get_cable_length_igp_82541;
101 phy->ops.get_cfg_done = e1000_get_cfg_done_generic;
102 phy->ops.get_info = e1000_get_phy_info_igp;
103 phy->ops.read_reg = e1000_read_phy_reg_igp;
104 phy->ops.reset = e1000_phy_hw_reset_82541;
105 phy->ops.set_d3_lplu_state = e1000_set_d3_lplu_state_82541;
106 phy->ops.write_reg = e1000_write_phy_reg_igp;
107 phy->ops
[all...]
H A De1000_82540.c77 phy->ops.check_polarity = e1000_check_polarity_m88;
78 phy->ops.commit = e1000_phy_sw_reset_generic;
79 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_m88;
80 phy->ops.get_cable_length = e1000_get_cable_length_m88;
81 phy->ops.get_cfg_done = e1000_get_cfg_done_generic;
82 phy->ops.read_reg = e1000_read_phy_reg_m88;
83 phy->ops.reset = e1000_phy_hw_reset_generic;
84 phy->ops.write_reg = e1000_write_phy_reg_m88;
85 phy->ops.get_info = e1000_get_phy_info_m88;
86 phy->ops
[all...]
H A De1000_mbx.c80 if (mbx->ops.read)
81 ret_val = mbx->ops.read(hw, msg, size, mbx_id);
105 else if (mbx->ops.write)
106 ret_val = mbx->ops.write(hw, msg, size, mbx_id);
125 if (mbx->ops.check_for_msg)
126 ret_val = mbx->ops.check_for_msg(hw, mbx_id);
145 if (mbx->ops.check_for_ack)
146 ret_val = mbx->ops.check_for_ack(hw, mbx_id);
165 if (mbx->ops.check_for_rst)
166 ret_val = mbx->ops
[all...]
H A De1000_phy.c76 phy->ops.init_params = e1000_null_ops_generic;
77 phy->ops.acquire = e1000_null_ops_generic;
78 phy->ops.check_polarity = e1000_null_ops_generic;
79 phy->ops.check_reset_block = e1000_null_ops_generic;
80 phy->ops.commit = e1000_null_ops_generic;
81 phy->ops.force_speed_duplex = e1000_null_ops_generic;
82 phy->ops.get_cfg_done = e1000_null_ops_generic;
83 phy->ops.get_cable_length = e1000_null_ops_generic;
84 phy->ops.get_info = e1000_null_ops_generic;
85 phy->ops
[all...]
H A De1000_vf.c65 hw->phy.ops.acquire = e1000_acquire_vf;
66 hw->phy.ops.release = e1000_release_vf;
81 hw->nvm.ops.acquire = e1000_acquire_vf;
82 hw->nvm.ops.release = e1000_release_vf;
118 mac->ops.setup_link = e1000_setup_link_vf;
120 mac->ops.get_bus_info = e1000_get_bus_info_pcie_vf;
122 mac->ops.reset_hw = e1000_reset_hw_vf;
124 mac->ops.init_hw = e1000_init_hw_vf;
126 mac->ops.check_for_link = e1000_check_for_link_vf;
128 mac->ops
[all...]
H A De1000_80003es2lan.c106 phy->ops.power_up = e1000_power_up_phy_copper;
107 phy->ops.power_down = e1000_power_down_phy_copper_80003es2lan;
115 phy->ops.acquire = e1000_acquire_phy_80003es2lan;
116 phy->ops.check_polarity = e1000_check_polarity_m88;
117 phy->ops.check_reset_block = e1000_check_reset_block_generic;
118 phy->ops.commit = e1000_phy_sw_reset_generic;
119 phy->ops.get_cfg_done = e1000_get_cfg_done_80003es2lan;
120 phy->ops.get_info = e1000_get_phy_info_m88;
121 phy->ops.release = e1000_release_phy_80003es2lan;
122 phy->ops
[all...]
H A De1000_82571.c110 phy->ops.check_reset_block = e1000_check_reset_block_generic;
111 phy->ops.reset = e1000_phy_hw_reset_generic;
112 phy->ops.set_d0_lplu_state = e1000_set_d0_lplu_state_82571;
113 phy->ops.set_d3_lplu_state = e1000_set_d3_lplu_state_generic;
114 phy->ops.power_up = e1000_power_up_phy_copper;
115 phy->ops.power_down = e1000_power_down_phy_copper_82571;
121 phy->ops.get_cfg_done = e1000_get_cfg_done_82571;
122 phy->ops.get_info = e1000_get_phy_info_igp;
123 phy->ops.check_polarity = e1000_check_polarity_igp;
124 phy->ops
[all...]
/freebsd-9.3-release/contrib/less/
H A Dcvt.c23 cvt_length(len, ops)
25 int ops;
53 * Convert text. Perform the transformations specified by ops.
58 cvt_text(odst, osrc, chpos, lenp, ops)
63 int ops;
81 if ((ops & CVT_BS) && ch == '\b' && dst > odst)
88 } else if ((ops & CVT_ANSI) && IS_CSI_START(ch))
98 if ((ops & CVT_TO_LC) && IS_UPPER(ch))
108 if ((ops & CVT_CRLF) && edst > odst && edst[-1] == '\r')
/freebsd-9.3-release/sys/dev/ixgbe/
H A Dixgbe_api.c47 if (hw->mac.ops.get_rtrup2tc)
48 hw->mac.ops.get_rtrup2tc(hw, map);
180 return ixgbe_call_func(hw, hw->mac.ops.init_hw, (hw),
193 return ixgbe_call_func(hw, hw->mac.ops.reset_hw, (hw),
209 return ixgbe_call_func(hw, hw->mac.ops.start_hw, (hw),
223 if (hw->mac.ops.enable_relaxed_ordering)
224 hw->mac.ops.enable_relaxed_ordering(hw);
236 return ixgbe_call_func(hw, hw->mac.ops.clear_hw_cntrs, (hw),
248 return ixgbe_call_func(hw, hw->mac.ops.get_media_type, (hw),
264 return ixgbe_call_func(hw, hw->mac.ops
[all...]
H A Dixgbe_x540.c66 eeprom->ops.init_params = &ixgbe_init_eeprom_params_X540;
67 eeprom->ops.read = &ixgbe_read_eerd_X540;
68 eeprom->ops.read_buffer = &ixgbe_read_eerd_buffer_X540;
69 eeprom->ops.write = &ixgbe_write_eewr_X540;
70 eeprom->ops.write_buffer = &ixgbe_write_eewr_buffer_X540;
71 eeprom->ops.update_checksum = &ixgbe_update_eeprom_checksum_X540;
72 eeprom->ops.validate_checksum = &ixgbe_validate_eeprom_checksum_X540;
73 eeprom->ops.calc_checksum = &ixgbe_calc_eeprom_checksum_X540;
76 phy->ops.init = &ixgbe_init_phy_ops_generic;
77 phy->ops
[all...]
H A Dixgbe_vf.c59 hw->mac.ops.init_hw = ixgbe_init_hw_vf;
60 hw->mac.ops.reset_hw = ixgbe_reset_hw_vf;
61 hw->mac.ops.start_hw = ixgbe_start_hw_vf;
63 hw->mac.ops.clear_hw_cntrs = NULL;
64 hw->mac.ops.get_media_type = NULL;
65 hw->mac.ops.get_mac_addr = ixgbe_get_mac_addr_vf;
66 hw->mac.ops.stop_adapter = ixgbe_stop_adapter_vf;
67 hw->mac.ops.get_bus_info = NULL;
70 hw->mac.ops.setup_link = ixgbe_setup_mac_link_vf;
71 hw->mac.ops
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/config/sparc/
H A Dnm-nbsd.h37 extern LONGEST sparc_xfer_wcookie (struct target_ops *ops,
/freebsd-9.3-release/sys/kern/
H A Dsubr_kobj.c98 kobj_class_compile_common(kobj_class_t cls, kobj_ops_t ops) argument
106 if (cls->ops)
118 * Then initialise the ops table.
121 ops->cache[i] = &null_method;
122 ops->cls = cls;
123 cls->ops = ops;
129 kobj_ops_t ops; local
134 * Allocate space for the compiled ops table.
136 ops
158 kobj_class_compile_static(kobj_class_t cls, kobj_ops_t ops) argument
235 void* ops = NULL; local
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dkeyset.c63 struct hx509_keyset_ops *ops; member in struct:hx509_certs_data
80 _hx509_ks_register(hx509_context context, struct hx509_keyset_ops *ops) argument
84 if (_hx509_ks_type(context, ops->name))
91 val[context->ks_num_ops] = ops;
117 struct hx509_keyset_ops *ops; local
142 ops = _hx509_ks_type(context, type);
143 if (ops == NULL) {
155 c->ops = ops;
158 ret = (*ops
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-reassoc.c86 We start with our merge worklist empty, and the ops list with all of
111 Continue building binary ops of these operations until you have only
137 reassociating have 3 or less ops. If they have 2 ops, they already
138 will be written into a nice single binary op. If you have 3 ops, a
153 Thus, this is what we do. When we have three ops left, we check to see
155 reduction, we check if any of ops are a really a phi node that is a
365 add_to_ops_vec (VEC(operand_entry_t, heap) **ops, tree op)
371 VEC_safe_push (operand_entry_t, heap, *ops, oe);
407 /* If CURR and LAST are a pair of ops tha
412 eliminate_duplicate_pair(enum tree_code opcode, VEC (operand_entry_t, heap) **ops, bool *all_done, unsigned int i, operand_entry_t curr, operand_entry_t last) argument
490 eliminate_plus_minus_pair(enum tree_code opcode, VEC (operand_entry_t, heap) **ops, unsigned int currindex, operand_entry_t curr) argument
547 eliminate_not_pairs(enum tree_code opcode, VEC (operand_entry_t, heap) **ops, unsigned int currindex, operand_entry_t curr) argument
616 eliminate_using_constants(enum tree_code opcode, VEC(operand_entry_t, heap) **ops) argument
735 optimize_ops_list(enum tree_code opcode, VEC (operand_entry_t, heap) **ops) argument
839 rewrite_expr_tree(tree stmt, unsigned int opindex, VEC(operand_entry_t, heap) * ops) argument
1345 optimize_ops_list (TREE_CODE (rhs), &ops); local
1385 dump_ops_vector(FILE *file, VEC (operand_entry_t, heap) *ops) argument
[all...]
/freebsd-9.3-release/lib/libc/xdr/
H A Dxdr_sizeof.c141 struct xdr_ops ops; local
147 ops.x_putlong = x_putlong;
148 ops.x_putbytes = x_putbytes;
149 ops.x_inline = x_inline;
150 ops.x_getpostn = x_getpostn;
151 ops.x_setpostn = x_setpostn;
152 ops.x_destroy = x_destroy;
155 ops.x_getlong = (dummyfunc1) harmless;
156 ops.x_getbytes = (dummyfunc2) harmless;
159 x.x_ops = &ops;
[all...]
/freebsd-9.3-release/sys/xdr/
H A Dxdr_sizeof.c135 struct xdr_ops ops; local
141 ops.x_putlong = x_putlong;
142 ops.x_putbytes = x_putbytes;
143 ops.x_inline = x_inline;
144 ops.x_getpostn = x_getpostn;
145 ops.x_setpostn = x_setpostn;
146 ops.x_destroy = x_destroy;
149 ops.x_getlong = (dummyfunc1) harmless;
150 ops.x_getbytes = (dummyfunc2) harmless;
153 x.x_ops = &ops;
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dcache.c39 * Add a new ccache type with operations `ops', overwriting any
43 * @param ops type of plugin symbol
45 * an existing ops with the same name.
54 const krb5_cc_ops *ops,
60 if(strcmp(context->cc_ops[i].prefix, ops->prefix) == 0) {
64 ops->prefix);
83 memcpy(&context->cc_ops[i], ops, sizeof(context->cc_ops[i]));
89 * `ops'. Returns 0 or and error code.
94 const krb5_cc_ops *ops,
104 p->ops
53 krb5_cc_register(krb5_context context, const krb5_cc_ops *ops, krb5_boolean override) argument
93 _krb5_cc_allocate(krb5_context context, const krb5_cc_ops *ops, krb5_ccache *id) argument
116 allocate_ccache(krb5_context context, const krb5_cc_ops *ops, const char *residual, krb5_ccache *id) argument
184 krb5_cc_gen_new(krb5_context context, const krb5_cc_ops *ops, krb5_ccache *id) argument
207 const krb5_cc_ops *ops = KRB5_DEFAULT_CCTYPE; local
442 const krb5_cc_ops *ops = KRB5_DEFAULT_CCTYPE; local
887 const krb5_cc_ops *ops; member in struct:krb5_cc_cache_cursor_data
906 const krb5_cc_ops *ops; local
[all...]

Completed in 165 milliseconds

12345678910