Home
last modified time | relevance | path

Searched refs:ops (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/titanic_41/usr/src/cmd/krb5/kadmin/gui/
H A DKdcGuiOps.java47 private Op ops[]; field in KdcGuiOps
58 if (ops == null) in setRoot()
63 for (int i = 0; i < ops.length; i++) { in handleMessage()
64 if (ops[i].hasCode()) { in handleMessage()
65 if (ops[i].matchMessage(msg)) { in handleMessage()
70 ops[i].handleMessage(msg); in handleMessage()
78 ops = new Op[17]; in initializeOps()
80 ops[0] = new Op(gui); in initializeOps()
81 ops[0].name = "Op1"; in initializeOps()
82 ops[0].filter = new OpFilter(); in initializeOps()
[all …]
/titanic_41/usr/src/lib/libshare/common/
H A Dplugin.c251 struct sa_plugin_ops *ops = NULL; in find_protocol() local
258 ops = sa_proto_handle.sa_ops[i]; in find_protocol()
264 return (ops); in find_protocol()
276 struct sa_plugin_ops *ops = find_protocol(proto); in sa_proto_share() local
279 if (ops != NULL && ops->sa_share != NULL) in sa_proto_share()
280 ret = ops->sa_share(share); in sa_proto_share()
293 struct sa_plugin_ops *ops = find_protocol(proto); in sa_proto_unshare() local
296 if (ops != NULL && ops->sa_unshare != NULL) in sa_proto_unshare()
297 ret = ops->sa_unshare(share, path); in sa_proto_unshare()
313 struct sa_plugin_ops *ops = find_protocol(proto); in sa_proto_share_resource() local
[all …]
/titanic_41/usr/src/uts/common/sys/
H A Dtnf_writer.h128 #define tnf_char(ops, item, ref) (item) argument
131 #define tnf_int8(ops, item, ref) (item) argument
134 #define tnf_uint8(ops, item, ref) (item) argument
137 #define tnf_int16(ops, item, ref) (item) argument
140 #define tnf_uint16(ops, item, ref) (item) argument
143 #define tnf_int32(ops, item, ref) (item) argument
146 #define tnf_uint32(ops, item, ref) (item) argument
149 #define tnf_int64(ops, item, ref) (item) argument
152 #define tnf_uint64(ops, item, ref) (item) argument
155 #define tnf_float32(ops, item, ref) (item) argument
[all …]
/titanic_41/usr/src/uts/common/io/e1000api/
H A De1000_api.c48 if (hw->mac.ops.init_params) { in e1000_init_mac_params()
49 ret_val = hw->mac.ops.init_params(hw); in e1000_init_mac_params()
74 if (hw->nvm.ops.init_params) { in e1000_init_nvm_params()
75 ret_val = hw->nvm.ops.init_params(hw); in e1000_init_nvm_params()
100 if (hw->phy.ops.init_params) { in e1000_init_phy_params()
101 ret_val = hw->phy.ops.init_params(hw); in e1000_init_phy_params()
126 if (hw->mbx.ops.init_params) { in e1000_init_mbx_params()
127 ret_val = hw->mbx.ops.init_params(hw); in e1000_init_mbx_params()
513 if (hw->mac.ops.get_bus_info) in e1000_get_bus_info()
514 return hw->mac.ops.get_bus_info(hw); in e1000_get_bus_info()
[all …]
H A De1000_82541.c98 phy->ops.check_polarity = e1000_check_polarity_igp; in e1000_init_phy_params_82541()
99 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_igp; in e1000_init_phy_params_82541()
100 phy->ops.get_cable_length = e1000_get_cable_length_igp_82541; in e1000_init_phy_params_82541()
101 phy->ops.get_cfg_done = e1000_get_cfg_done_generic; in e1000_init_phy_params_82541()
102 phy->ops.get_info = e1000_get_phy_info_igp; in e1000_init_phy_params_82541()
103 phy->ops.read_reg = e1000_read_phy_reg_igp; in e1000_init_phy_params_82541()
104 phy->ops.reset = e1000_phy_hw_reset_82541; in e1000_init_phy_params_82541()
105 phy->ops.set_d3_lplu_state = e1000_set_d3_lplu_state_82541; in e1000_init_phy_params_82541()
106 phy->ops.write_reg = e1000_write_phy_reg_igp; in e1000_init_phy_params_82541()
107 phy->ops.power_up = e1000_power_up_phy_copper; in e1000_init_phy_params_82541()
[all …]
H A De1000_82540.c77 phy->ops.check_polarity = e1000_check_polarity_m88; in e1000_init_phy_params_82540()
78 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_82540()
79 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_m88; in e1000_init_phy_params_82540()
80 phy->ops.get_cable_length = e1000_get_cable_length_m88; in e1000_init_phy_params_82540()
81 phy->ops.get_cfg_done = e1000_get_cfg_done_generic; in e1000_init_phy_params_82540()
82 phy->ops.read_reg = e1000_read_phy_reg_m88; in e1000_init_phy_params_82540()
83 phy->ops.reset = e1000_phy_hw_reset_generic; in e1000_init_phy_params_82540()
84 phy->ops.write_reg = e1000_write_phy_reg_m88; in e1000_init_phy_params_82540()
85 phy->ops.get_info = e1000_get_phy_info_m88; in e1000_init_phy_params_82540()
86 phy->ops.power_up = e1000_power_up_phy_copper; in e1000_init_phy_params_82540()
[all …]
H A De1000_phy.c76 phy->ops.init_params = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
77 phy->ops.acquire = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
78 phy->ops.check_polarity = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
79 phy->ops.check_reset_block = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
80 phy->ops.commit = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
81 phy->ops.force_speed_duplex = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
82 phy->ops.get_cfg_done = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
83 phy->ops.get_cable_length = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
84 phy->ops.get_info = e1000_null_ops_generic; in e1000_init_phy_ops_generic()
85 phy->ops.set_page = e1000_null_set_page; in e1000_init_phy_ops_generic()
[all …]
H A De1000_82571.c110 phy->ops.check_reset_block = e1000_check_reset_block_generic; in e1000_init_phy_params_82571()
111 phy->ops.reset = e1000_phy_hw_reset_generic; in e1000_init_phy_params_82571()
112 phy->ops.set_d0_lplu_state = e1000_set_d0_lplu_state_82571; in e1000_init_phy_params_82571()
113 phy->ops.set_d3_lplu_state = e1000_set_d3_lplu_state_generic; in e1000_init_phy_params_82571()
114 phy->ops.power_up = e1000_power_up_phy_copper; in e1000_init_phy_params_82571()
115 phy->ops.power_down = e1000_power_down_phy_copper_82571; in e1000_init_phy_params_82571()
121 phy->ops.get_cfg_done = e1000_get_cfg_done_82571; in e1000_init_phy_params_82571()
122 phy->ops.get_info = e1000_get_phy_info_igp; in e1000_init_phy_params_82571()
123 phy->ops.check_polarity = e1000_check_polarity_igp; in e1000_init_phy_params_82571()
124 phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_igp; in e1000_init_phy_params_82571()
[all …]
H A De1000_ich8lan.c198 ret_val = hw->phy.ops.read_reg_locked(hw, PHY_ID1, &phy_reg); in e1000_phy_is_accessible_pchlan()
203 ret_val = hw->phy.ops.read_reg_locked(hw, PHY_ID2, &phy_reg); in e1000_phy_is_accessible_pchlan()
225 hw->phy.ops.release(hw); in e1000_phy_is_accessible_pchlan()
229 hw->phy.ops.acquire(hw); in e1000_phy_is_accessible_pchlan()
237 hw->phy.ops.read_reg_locked(hw, CV_SMB_CTRL, &phy_reg); in e1000_phy_is_accessible_pchlan()
239 hw->phy.ops.write_reg_locked(hw, CV_SMB_CTRL, phy_reg); in e1000_phy_is_accessible_pchlan()
319 ret_val = hw->phy.ops.acquire(hw); in e1000_init_phy_workarounds_pchlan()
358 if (hw->phy.ops.check_reset_block(hw)) { in e1000_init_phy_workarounds_pchlan()
387 hw->phy.ops.release(hw); in e1000_init_phy_workarounds_pchlan()
391 if (hw->phy.ops.check_reset_block(hw)) { in e1000_init_phy_workarounds_pchlan()
[all …]
H A De1000_80003es2lan.c100 phy->ops.power_up = e1000_power_up_phy_copper; in e1000_init_phy_params_80003es2lan()
101 phy->ops.power_down = e1000_power_down_phy_copper_80003es2lan; in e1000_init_phy_params_80003es2lan()
109 phy->ops.acquire = e1000_acquire_phy_80003es2lan; in e1000_init_phy_params_80003es2lan()
110 phy->ops.check_polarity = e1000_check_polarity_m88; in e1000_init_phy_params_80003es2lan()
111 phy->ops.check_reset_block = e1000_check_reset_block_generic; in e1000_init_phy_params_80003es2lan()
112 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_80003es2lan()
113 phy->ops.get_cfg_done = e1000_get_cfg_done_80003es2lan; in e1000_init_phy_params_80003es2lan()
114 phy->ops.get_info = e1000_get_phy_info_m88; in e1000_init_phy_params_80003es2lan()
115 phy->ops.release = e1000_release_phy_80003es2lan; in e1000_init_phy_params_80003es2lan()
116 phy->ops.reset = e1000_phy_hw_reset_generic; in e1000_init_phy_params_80003es2lan()
[all …]
H A De1000_82575.c172 phy->ops.read_i2c_byte = e1000_read_i2c_byte_generic; in e1000_init_phy_params_82575()
173 phy->ops.write_i2c_byte = e1000_write_i2c_byte_generic; in e1000_init_phy_params_82575()
180 phy->ops.power_up = e1000_power_up_phy_copper; in e1000_init_phy_params_82575()
181 phy->ops.power_down = e1000_power_down_phy_copper_82575; in e1000_init_phy_params_82575()
186 phy->ops.acquire = e1000_acquire_phy_82575; in e1000_init_phy_params_82575()
187 phy->ops.check_reset_block = e1000_check_reset_block_generic; in e1000_init_phy_params_82575()
188 phy->ops.commit = e1000_phy_sw_reset_generic; in e1000_init_phy_params_82575()
189 phy->ops.get_cfg_done = e1000_get_cfg_done_82575; in e1000_init_phy_params_82575()
190 phy->ops.release = e1000_release_phy_82575; in e1000_init_phy_params_82575()
195 phy->ops.reset = e1000_phy_hw_reset_sgmii_82575; in e1000_init_phy_params_82575()
[all …]
H A De1000_mbx.c83 if (mbx->ops.read) in e1000_read_mbx()
84 ret_val = mbx->ops.read(hw, msg, size, mbx_id); in e1000_read_mbx()
108 else if (mbx->ops.write) in e1000_write_mbx()
109 ret_val = mbx->ops.write(hw, msg, size, mbx_id); in e1000_write_mbx()
128 if (mbx->ops.check_for_msg) in e1000_check_for_msg()
129 ret_val = mbx->ops.check_for_msg(hw, mbx_id); in e1000_check_for_msg()
148 if (mbx->ops.check_for_ack) in e1000_check_for_ack()
149 ret_val = mbx->ops.check_for_ack(hw, mbx_id); in e1000_check_for_ack()
168 if (mbx->ops.check_for_rst) in e1000_check_for_rst()
169 ret_val = mbx->ops.check_for_rst(hw, mbx_id); in e1000_check_for_rst()
[all …]
H A De1000_vf.c65 hw->phy.ops.acquire = e1000_acquire_vf; in e1000_init_phy_params_vf()
66 hw->phy.ops.release = e1000_release_vf; in e1000_init_phy_params_vf()
81 hw->nvm.ops.acquire = e1000_acquire_vf; in e1000_init_nvm_params_vf()
82 hw->nvm.ops.release = e1000_release_vf; in e1000_init_nvm_params_vf()
118 mac->ops.setup_link = e1000_setup_link_vf; in e1000_init_mac_params_vf()
120 mac->ops.get_bus_info = e1000_get_bus_info_pcie_vf; in e1000_init_mac_params_vf()
122 mac->ops.reset_hw = e1000_reset_hw_vf; in e1000_init_mac_params_vf()
124 mac->ops.init_hw = e1000_init_hw_vf; in e1000_init_mac_params_vf()
126 mac->ops.check_for_link = e1000_check_for_link_vf; in e1000_init_mac_params_vf()
128 mac->ops.get_link_up_info = e1000_get_link_up_info_vf; in e1000_init_mac_params_vf()
[all …]
/titanic_41/usr/src/uts/common/krtld/
H A Dbootrd.c39 extern struct bootops *ops;
52 BRD_MOUNTROOT(struct boot_fs_ops *ops, char *str) in BRD_MOUNTROOT() argument
54 return (ops->fsw_mountroot(str)); in BRD_MOUNTROOT()
58 BRD_UNMOUNTROOT(struct boot_fs_ops *ops) in BRD_UNMOUNTROOT() argument
63 return (ops->fsw_unmountroot()); in BRD_UNMOUNTROOT()
67 BRD_OPEN(struct boot_fs_ops *ops, char *file, int flags) in BRD_OPEN() argument
86 return (ops->fsw_open(file, flags)); in BRD_OPEN()
90 BRD_CLOSE(struct boot_fs_ops *ops, int fd) in BRD_CLOSE() argument
95 return (ops->fsw_close(fd)); in BRD_CLOSE()
99 BRD_READ(struct boot_fs_ops *ops, int fd, caddr_t buf, size_t len) in BRD_READ() argument
[all …]
H A Dreloc.h243 _kobj_printf(ops, MSG_REL_PREFIL, (file)); \
244 _kobj_printf(ops, MSG_REL_SYM, ((sym) ? (sym) : MSG_STR_UNKNOWN)); \
245 _kobj_printf(ops, MSG_REL_UNIMPL, (int)(rtype))
248 _kobj_printf(ops, MSG_REL_PREGEN, CONV_RELOC_TYPE((rtype))); \
249 _kobj_printf(ops, MSG_REL_FILE, (file)); \
250 _kobj_printf(ops, MSG_REL_SYM, ((sym) ? (sym) : MSG_STR_UNKNOWN)); \
251 _kobj_printf(ops, MSG_REL_UNSUPSZ, (int)(size))
254 _kobj_printf(ops, MSG_REL_PREGEN, CONV_RELOC_TYPE((rtype))); \
255 _kobj_printf(ops, MSG_REL_FILE, (file)); \
256 _kobj_printf(ops, MSG_REL_SYM, ((sym) ? (sym) : MSG_STR_UNKNOWN)); \
[all …]
/titanic_41/usr/src/lib/libtnfprobe/
H A Dprobe_cntl.c226 tnf_ops_t *ops; in _tnf_fork_thread_setup() local
236 ops = tnf_get_ops(); in _tnf_fork_thread_setup()
237 if (!ops) in _tnf_fork_thread_setup()
240 ops->schedule.record_p = 0; in _tnf_fork_thread_setup()
401 tnf_ops_t *ops; in _tnf_resume_ret() local
409 ops = tnf_get_ops(); in _tnf_resume_ret()
410 if (ops) { in _tnf_resume_ret()
416 if (ops->schedule.lwpid != _lwp_self()) in _tnf_resume_ret()
417 ops->schedule.record_p = 0; in _tnf_resume_ret()
542 tnf_ops_t ops; /* allocated on stack */ in probestart() local
[all …]
/titanic_41/usr/src/uts/common/io/ixgbe/
H A Dixgbe_api.c156 return ixgbe_call_func(hw, hw->mac.ops.init_hw, (hw), in ixgbe_init_hw()
169 return ixgbe_call_func(hw, hw->mac.ops.reset_hw, (hw), in ixgbe_reset_hw()
185 return ixgbe_call_func(hw, hw->mac.ops.start_hw, (hw), in ixgbe_start_hw()
199 if (hw->mac.ops.enable_relaxed_ordering) in ixgbe_enable_relaxed_ordering()
200 hw->mac.ops.enable_relaxed_ordering(hw); in ixgbe_enable_relaxed_ordering()
212 return ixgbe_call_func(hw, hw->mac.ops.clear_hw_cntrs, (hw), in ixgbe_clear_hw_cntrs()
224 return ixgbe_call_func(hw, hw->mac.ops.get_media_type, (hw), in ixgbe_get_media_type()
240 return ixgbe_call_func(hw, hw->mac.ops.get_mac_addr, in ixgbe_get_mac_addr()
254 return ixgbe_call_func(hw, hw->mac.ops.get_san_mac_addr, in ixgbe_get_san_mac_addr()
267 return ixgbe_call_func(hw, hw->mac.ops.set_san_mac_addr, in ixgbe_set_san_mac_addr()
[all …]
H A Dixgbe_x540.c67 eeprom->ops.init_params = &ixgbe_init_eeprom_params_X540; in ixgbe_init_ops_X540()
68 eeprom->ops.read = &ixgbe_read_eerd_X540; in ixgbe_init_ops_X540()
69 eeprom->ops.read_buffer = &ixgbe_read_eerd_buffer_X540; in ixgbe_init_ops_X540()
70 eeprom->ops.write = &ixgbe_write_eewr_X540; in ixgbe_init_ops_X540()
71 eeprom->ops.write_buffer = &ixgbe_write_eewr_buffer_X540; in ixgbe_init_ops_X540()
72 eeprom->ops.update_checksum = &ixgbe_update_eeprom_checksum_X540; in ixgbe_init_ops_X540()
73 eeprom->ops.validate_checksum = &ixgbe_validate_eeprom_checksum_X540; in ixgbe_init_ops_X540()
74 eeprom->ops.calc_checksum = &ixgbe_calc_eeprom_checksum_X540; in ixgbe_init_ops_X540()
77 phy->ops.init = &ixgbe_init_phy_ops_generic; in ixgbe_init_ops_X540()
78 phy->ops.reset = NULL; in ixgbe_init_ops_X540()
[all …]
/titanic_41/usr/src/lib/passwdutil/
H A D__failed_count.c37 repops_t *ops; in __incr_failed_count() local
45 ops = rops[repnum]; in __incr_failed_count()
46 if ((ops->lock != NULL) && in __incr_failed_count()
47 (ret = ops->lock()) != PWU_SUCCESS) { in __incr_failed_count()
53 if ((ret = ops->getpwnam(username, items, NULL, &buf)) != PWU_SUCCESS) { in __incr_failed_count()
58 if ((ret = ops->update(items, NULL, buf)) != PWU_SUCCESS) { in __incr_failed_count()
69 if ((ret = ops->update(items, NULL, buf)) != PWU_SUCCESS) in __incr_failed_count()
72 if (((ret = ops->putpwnam(username, NULL, NULL, buf)) == in __incr_failed_count()
78 if (ops->unlock != NULL) { in __incr_failed_count()
79 ops->unlock(); in __incr_failed_count()
[all …]
/titanic_41/usr/src/uts/common/tnf/
H A Dtnf_types.h75 #define BUF_ALLOC(ops) tnfw_b_alloc argument
80 #define BUF_ALLOC(ops) ops->alloc argument
85 buf->slot = tnf_##slot(ops, val, (tnf_record_p) &buf->slot)
88 buf->slot = tnf_##func(ops, val, (tnf_record_p)&buf->slot)
90 #define ALLOC(ops, size, mem, index_p, saved_mode) \ argument
91 mem = BUF_ALLOC(ops)(&(ops->wcb), size, ops->mode); \
93 ops->mode = saved_mode; \
98 #define ALLOC2(ops, size, mem, saved_mode) \ argument
99 mem = BUF_ALLOC(ops)(&(ops->wcb), size, ops->mode); \
101 ops->mode = saved_mode; \
[all …]
H A Dtnf_writer.c361 tnf_ref32_1(tnf_ops_t *ops, tnf_record_p item, tnf_record_p reference) in tnf_ref32_1() argument
399 tnf_ref32_1(tnf_ops_t *ops, tnf_record_p item, tnf_record_p reference) in tnf_ref32_1() argument
445 tnf_abstract_tag_1(tnf_ops_t *ops, tnf_tag_data_t *tag_data) in tnf_abstract_tag_1() argument
452 saved_mode = ops->mode; in tnf_abstract_tag_1()
453 ops->mode = TNF_ALLOC_FIXED; in tnf_abstract_tag_1()
455 ALLOC(ops, sizeof (*buffer), buffer, tag_data->tag_index, in tnf_abstract_tag_1()
460 metatag_data->tag_desc(ops, metatag_data); in tnf_abstract_tag_1()
466 ops->mode = saved_mode; in tnf_abstract_tag_1()
475 tnf_scalar_tag_1(tnf_ops_t *ops, tnf_tag_data_t *tag_data) in tnf_scalar_tag_1() argument
482 saved_mode = ops->mode; in tnf_scalar_tag_1()
[all …]
H A Dtrace_funcs.c94 tnf_trace_alloc(tnf_ops_t *ops, tnf_probe_control_t *probe_p, in tnf_trace_alloc() argument
115 if (!lock_try(&ops->busy)) /* atomic op flushes WB */ in tnf_trace_alloc()
125 if ((probe_index = tnf_probe_tag(ops, probe_p)) == 0) in tnf_trace_alloc()
146 wcb = &ops->wcb; in tnf_trace_alloc()
178 sched = &ops->schedule; in tnf_trace_alloc()
228 set_p->tpd_p = ops; in tnf_trace_alloc()
234 buffer->time_delta = tnf_time_delta(ops, (unsigned long)time_diff, in tnf_trace_alloc()
237 buffer->time_delta = tnf_time_delta(ops, (unsigned long)time_diff, in tnf_trace_alloc()
249 if ((sched_record_p = tnf_kernel_schedule(ops, sched)) != NULL) { in tnf_trace_alloc()
276 LOCK_INIT_CLEAR(&ops->busy); /* XXX save a call */ in tnf_trace_alloc()
[all …]
/titanic_41/usr/src/uts/intel/sys/
H A Dbootvfs.h82 #define BRD_MOUNTROOT(ops, str) ((ops)->fsw_mountroot)(str) argument
83 #define BRD_UNMOUNTROOT(ops) ((ops)->fsw_unmountroot)() argument
84 #define BRD_OPEN(ops, file, flag) ((ops)->fsw_open)(file, flag) argument
85 #define BRD_CLOSE(ops, fd) ((ops)->fsw_close)(fd) argument
86 #define BRD_READ(ops, fd, buf, s) ((ops)->fsw_read)(fd, buf, s) argument
87 #define BRD_SEEK(ops, fd, addr, w) ((ops)->fsw_lseek)(fd, addr, w) argument
88 #define BRD_FSTAT(ops, fd, stp) ((ops)->fsw_fstat)(fd, stp) argument
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/
H A Dccbase.c43 const krb5_cc_ops *ops; member
138 krb5_cc_register(krb5_context context, krb5_cc_ops *ops, krb5_boolean override) in krb5_cc_register() argument
146 for (t = cc_typehead;t && strcmp(t->ops->prefix,ops->prefix);t = t->next) in krb5_cc_register()
150 t->ops = ops; in krb5_cc_register()
163 t->ops = ops; in krb5_cc_register()
187 const krb5_cc_ops *ops; in krb5_cc_resolve() local
224 err = krb5int_cc_getops(context, pfx, &ops); in krb5_cc_resolve()
230 return ops->resolve(context, cache, resid); in krb5_cc_resolve()
243 const krb5_cc_ops **ops) in krb5int_cc_getops() argument
253 if (strcmp (tlist->ops->prefix, pfx) == 0) { in krb5int_cc_getops()
[all …]
/titanic_41/usr/src/uts/common/sys/rsm/
H A Drsmpi.h155 struct rsm_ops *ops; member
521 (*((controller).ops->rsm_seg_create)) \
525 (*((controller).ops->rsm_seg_destroy)) \
529 (*((controller).ops->rsm_bind)) \
532 (*((controller).ops->rsm_unbind)) \
536 (*((controller).ops->rsm_rebind)) \
540 (*((controller).ops->rsm_publish)) \
544 (*((controller).ops->rsm_unpublish)) \
548 (*((controller).ops->rsm_republish)) \
552 (*((controller).ops->rsm_connect)) \
[all …]

12345678910>>...12