HomeSort by: relevance | last modified time | path
    Searched defs:ret_val (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/sys/dev/pci/igc/
igc_base.c 67 int ret_val; local in function:igc_init_hw_base
85 ret_val = mac->ops.setup_link(hw);
94 return ret_val;
igc_api.c 25 int ret_val = IGC_SUCCESS; local in function:igc_init_mac_params
28 ret_val = hw->mac.ops.init_params(hw);
29 if (ret_val) {
35 ret_val = -IGC_ERR_CONFIG;
38 return ret_val;
51 int ret_val = IGC_SUCCESS; local in function:igc_init_nvm_params
54 ret_val = hw->nvm.ops.init_params(hw);
55 if (ret_val) {
61 ret_val = -IGC_ERR_CONFIG;
64 return ret_val;
77 int ret_val = IGC_SUCCESS; local in function:igc_init_phy_params
106 int ret_val = IGC_SUCCESS; local in function:igc_set_mac_type
153 int ret_val; local in function:igc_setup_init_funcs
    [all...]
igc_nvm.c 145 int ret_val = IGC_SUCCESS; local in function:igc_read_nvm_eerd
163 ret_val = igc_poll_eerd_eewr_done(hw, IGC_NVM_POLL_READ);
164 if (ret_val)
170 if (ret_val)
171 DEBUGOUT1("NVM read error: %d\n", ret_val);
173 return ret_val;
217 int ret_val; local in function:igc_validate_nvm_checksum_generic
222 ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data);
223 if (ret_val) {
225 return ret_val;
    [all...]
igc_mac.c 106 int ret_val; local in function:igc_check_alt_mac_addr_generic
112 ret_val = hw->nvm.ops.read(hw, NVM_COMPAT, 1, &nvm_data);
113 if (ret_val)
114 return ret_val;
116 ret_val = hw->nvm.ops.read(hw, NVM_ALT_MAC_ADDR_PTR, 1,
118 if (ret_val) {
120 return ret_val;
132 ret_val = hw->nvm.ops.read(hw, offset, 1, &nvm_data);
133 if (ret_val) {
135 return ret_val;
396 int ret_val; local in function:igc_setup_link_generic
580 int ret_val = IGC_SUCCESS; local in function:igc_config_fc_after_link_up_generic
    [all...]
igc_phy.c 144 int ret_val = IGC_SUCCESS; local in function:igc_get_phy_id
151 ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id);
152 if (ret_val)
153 return ret_val;
157 ret_val = phy->ops.read_reg(hw, PHY_ID2, &phy_id);
158 if (ret_val)
159 return ret_val;
296 int ret_val; local in function:igc_phy_setup_autoneg
303 ret_val = phy->ops.read_reg(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg);
304 if (ret_val)
472 int ret_val; local in function:igc_copper_link_autoneg
533 int ret_val; local in function:igc_setup_copper_link_generic
587 int ret_val; local in function:igc_check_downshift_generic
613 int ret_val = IGC_SUCCESS; local in function:igc_wait_autoneg
653 int ret_val = IGC_SUCCESS; local in function:igc_phy_has_link_generic
706 int ret_val; local in function:igc_phy_hw_reset_generic
800 int ret_val; local in function:igc_write_phy_reg_gpy
836 int ret_val; local in function:igc_read_phy_reg_gpy
870 int ret_val; local in function:__igc_access_xmdio_reg
    [all...]
igc_i225.c 140 int ret_val = IGC_SUCCESS; local in function:igc_init_phy_params_i225
165 ret_val = hw->phy.ops.reset(hw);
166 if (ret_val)
169 ret_val = igc_get_phy_id(hw);
173 return ret_val;
186 int ret_val; local in function:igc_reset_hw_i225
194 ret_val = igc_disable_pcie_master_generic(hw);
195 if (ret_val)
212 ret_val = igc_get_auto_rd_done_generic(hw);
213 if (ret_val) {
243 int ret_val; local in function:igc_acquire_nvm_i225
279 int ret_val = IGC_SUCCESS; local in function:igc_acquire_swfw_sync_i225
353 int ret_val; local in function:igc_setup_copper_link_i225
543 int ret_val = IGC_SUCCESS; local in function:__igc_write_nvm_srwr
628 int ret_val; local in function:igc_update_nvm_checksum_i225
684 bool ret_val = false; local in function:igc_get_flash_presence_i225
705 int ret_val = IGC_SUCCESS; local in function:igc_set_flsw_flash_burst_counter_i225
734 int ret_val = IGC_SUCCESS; local in function:igc_write_erase_flash_command_i225
783 int ret_val = 0; local in function:igc_update_flash_i225
872 int ret_val = -IGC_ERR_NVM; local in function:igc_pool_flash_update_done_i225
999 int ret_val; local in function:igc_check_for_link_i225
1096 int ret_val; local in function:igc_init_hw_i225
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn21/
amdgpu_dcn21_hubbub.c 67 uint32_t ret_val = 0; local in function:convert_and_clamp
68 ret_val = wm_ns * refclk_mhz;
69 ret_val /= 1000;
71 if (ret_val > clamp_value)
72 ret_val = clamp_value;
74 return ret_val;
  /src/sys/dev/acpi/
sony_acpi.c 206 ACPI_OBJECT param, ret_val; local in function:sony_acpi_eval_set_integer
218 buf.Pointer = &ret_val;
219 buf.Length = sizeof(ret_val);
225 *valp = ret_val.Integer.Value;
  /src/sys/dev/pci/ixgbe/
ixgbe_mbx.c 89 s32 ret_val; local in function:ixgbe_poll_mbx
105 ret_val = ixgbe_poll_for_msg(hw, mbx_id);
107 if (!ret_val)
110 return ret_val;
126 s32 ret_val = IXGBE_ERR_MBX; local in function:ixgbe_write_mbx
139 ret_val = IXGBE_ERR_PARAM;
143 ret_val = mbx->ops[mbx_id].write(hw, msg, size, mbx_id);
146 return ret_val;
159 s32 ret_val = IXGBE_ERR_CONFIG; local in function:ixgbe_check_for_msg
164 ret_val = mbx->ops[mbx_id].check_for_msg(hw, mbx_id)
179 s32 ret_val = IXGBE_ERR_CONFIG; local in function:ixgbe_check_for_ack
199 s32 ret_val = IXGBE_ERR_CONFIG; local in function:ixgbe_check_for_rst
219 s32 ret_val = IXGBE_ERR_CONFIG; local in function:ixgbe_clear_mbx
437 s32 ret_val = IXGBE_ERR_MBX; local in function:ixgbe_obtain_mbx_lock_vf
513 s32 ret_val; local in function:ixgbe_write_mbx_vf_legacy
556 s32 ret_val; local in function:ixgbe_write_mbx_vf
605 s32 ret_val; local in function:ixgbe_read_mbx_vf_legacy
642 s32 ret_val; local in function:ixgbe_read_mbx_vf
799 s32 ret_val = IXGBE_ERR_MBX; local in function:ixgbe_check_for_ack_pf
824 s32 ret_val = IXGBE_ERR_MBX; local in function:ixgbe_check_for_rst_pf
863 s32 ret_val = IXGBE_ERR_MBX; local in function:ixgbe_obtain_mbx_lock_pf
926 s32 ret_val; local in function:ixgbe_write_mbx_pf_legacy
968 s32 ret_val; local in function:ixgbe_write_mbx_pf
1018 s32 ret_val; local in function:ixgbe_read_mbx_pf_legacy
1056 s32 ret_val; local in function:ixgbe_read_mbx_pf
    [all...]
ixgbe_dcb.c 105 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_dcb_calculate_tc_credits_cee
115 ret_val = IXGBE_ERR_CONFIG;
199 return ret_val;
316 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_dcb_check_config_cee
334 ret_val = IXGBE_ERR_CONFIG;
341 ret_val = IXGBE_ERR_CONFIG;
349 ret_val = IXGBE_ERR_CONFIG;
371 ret_val = IXGBE_ERR_CONFIG;
376 ret_val = IXGBE_ERR_CONFIG;
382 ret_val = IXGBE_ERR_CONFIG
    [all...]
ixgbe_vf.c 192 s32 ret_val = IXGBE_ERR_INVALID_MAC_ADDR; local in function:ixgbe_reset_hw_vf
237 ret_val = ixgbe_poll_mbx(hw, msgbuf,
239 if (ret_val)
240 return ret_val;
251 return ret_val;
364 s32 ret_val; local in function:ixgbe_set_rar_vf
370 ret_val = ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, 3);
375 if (!ret_val &&
381 return ret_val;
511 s32 ret_val; local in function:ixgbe_get_link_state_vf
542 s32 ret_val; local in function:ixgbe_set_vfta_vf
600 s32 ret_val; local in function:ixgbevf_set_uc_addr_vf
655 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_check_mac_link_vf
    [all...]
ixgbe_x540.c 70 s32 ret_val; local in function:ixgbe_init_ops_X540
75 ret_val = ixgbe_init_phy_ops_generic(hw);
76 ret_val = ixgbe_init_ops_generic(hw);
165 return ret_val;
323 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_start_hw_X540
327 ret_val = ixgbe_start_hw_generic(hw);
328 if (ret_val != IXGBE_SUCCESS)
334 return ret_val;
ixgbe_82598.c 129 s32 ret_val; local in function:ixgbe_init_ops_82598
133 ret_val = ixgbe_init_phy_ops_generic(hw);
134 ret_val = ixgbe_init_ops_generic(hw);
185 return ret_val;
201 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_init_phy_ops_82598
227 ret_val = phy->ops.identify_sfp(hw);
228 if (ret_val != IXGBE_SUCCESS)
231 ret_val = IXGBE_ERR_SFP_NOT_SUPPORTED;
236 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw,
239 if (ret_val != IXGBE_SUCCESS)
264 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_start_hw_82598
416 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_fc_enable_82598
    [all...]
ixgbe_phy.c 1182 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_reset_phy_nl
1209 ret_val = IXGBE_ERR_PHY;
1214 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw, &list_offset,
1216 if (ret_val != IXGBE_SUCCESS)
1219 ret_val = hw->eeprom.ops.read(hw, data_offset, &block_crc);
1225 ret_val = hw->eeprom.ops.read(hw, data_offset, &eword);
1226 if (ret_val)
1240 ret_val = hw->eeprom.ops.read(hw, data_offset,
1242 if (ret_val)
1246 ret_val = hw->eeprom.ops.read(hw, data_offset
    [all...]
ixgbe_82599.c 126 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_init_phy_ops_82599
149 ret_val = phy->ops.identify(hw);
150 if (ret_val == IXGBE_ERR_SFP_NOT_SUPPORTED)
177 return ret_val;
182 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_setup_sfp_modules_82599
192 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw, &list_offset,
194 if (ret_val != IXGBE_SUCCESS)
198 ret_val = hw->mac.ops.acquire_swfw_sync(hw,
200 if (ret_val != IXGBE_SUCCESS) {
201 ret_val = IXGBE_ERR_SWFW_SYNC
259 s32 ret_val; local in function:prot_autoc_read_82599
288 s32 ret_val = IXGBE_SUCCESS; local in function:prot_autoc_write_82599
333 s32 ret_val; local in function:ixgbe_init_ops_82599
2144 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_start_hw_82599
2441 s32 ret_val = IXGBE_ERR_CONFIG; local in function:ixgbe_read_eeprom_buffer_82599
2475 s32 ret_val = IXGBE_ERR_CONFIG; local in function:ixgbe_read_eeprom_82599
2502 s32 ret_val; local in function:ixgbe_reset_pipeline_82599
    [all...]
ixgbe_api.c 139 s32 ret_val = IXGBE_SUCCESS; local in function:ixgbe_set_mac_type
219 ret_val = IXGBE_ERR_DEVICE_NOT_SUPPORTED;
227 hw->mac.type, ret_val);
228 return ret_val;
  /src/sys/dev/raidframe/
rf_parityscan.c 83 int ret_val; local in function:rf_RewriteParityRange
100 ret_val = 0;
125 ret_val = 1;
129 ret_val = 1;
133 ret_val = 1;
137 ret_val = 1;
141 return (ret_val);
rf_paritymap.c 512 int i, ret_val = 0; local in function:rf_paritymap_rewrite
528 ret_val = 1;
530 return ret_val;
546 return ret_val;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
amdgpu_dcn10_hubbub.c 288 uint32_t ret_val = 0; local in function:convert_and_clamp
289 ret_val = wm_ns * refclk_mhz;
290 ret_val /= 1000;
292 if (ret_val > clamp_value)
293 ret_val = clamp_value;
295 return ret_val;
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_acpi.c 115 u8 ret_val; /* return value */ member in struct:atcs_pref_req_output
693 switch (atcs_output.ret_val) {
  /src/sys/external/bsd/dwc2/dist/
dwc2_hcd.c 909 enum dwc2_transaction_type ret_val = DWC2_TRANSACTION_NONE; local in function:dwc2_hcd_select_transactions
938 ret_val = DWC2_TRANSACTION_PERIODIC;
989 if (ret_val == DWC2_TRANSACTION_NONE)
990 ret_val = DWC2_TRANSACTION_NON_PERIODIC;
992 ret_val = DWC2_TRANSACTION_ALL;
998 return ret_val;
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/io/
fsif.h 170 uint64_t ret_val; member in union:fsif_response::__anon1fa035a0020a
  /src/usr.bin/pr/
pr.c 138 int ret_val; local in function:main
142 ret_val = setup(argc, argv);
143 if (!ret_val) {
148 ret_val = mulfile(argc, argv);
150 ret_val = onecol(argc, argv);
152 ret_val = horzcol(argc, argv);
154 ret_val = vertcol(argc, argv);
158 if (errcnt || ret_val)
  /src/sys/arch/bebox/stand/boot/
fd.c 518 int ret_val = 0; local in function:fdSeek
526 ret_val = FAIL;
529 return(ret_val);
  /src/lib/libform/
internals.c 91 _formi_do_char_validation(FIELD *field, FIELDTYPE *type, char c, int *ret_val);
93 _formi_do_validation(FIELD *field, FIELDTYPE *type, int *ret_val);
2943 int ret_val; local in function:_formi_validate_char
2948 ret_val = E_INVALID_FIELD;
2949 _formi_do_char_validation(field, field->type, c, &ret_val);
2951 return ret_val;
2957 * routines. If the field is ok then update ret_val to E_OK otherwise
2958 * ret_val is not changed.
2961 _formi_do_char_validation(FIELD *field, FIELDTYPE *type, char c, int *ret_val)
2964 _formi_do_char_validation(field, type->link->next, c, ret_val);
2986 int ret_val, count; local in function:_formi_validate_field
    [all...]

Completed in 35 milliseconds

1 2