/openbmc/linux/drivers/net/wireless/silabs/wfx/ |
H A D | hif_tx_mib.c | 19 struct wfx_hif_mib_current_tx_power_level arg = { in wfx_hif_set_output_power() local 24 &arg, sizeof(arg)); in wfx_hif_set_output_power() 30 struct wfx_hif_mib_beacon_wake_up_period arg = { in wfx_hif_set_beacon_wakeup_period() local 39 &arg, sizeof(arg)); in wfx_hif_set_beacon_wakeup_period() 44 struct wfx_hif_mib_rcpi_rssi_threshold arg = { in wfx_hif_set_rcpi_rssi_threshold() local 50 arg.upperthresh = 1; in wfx_hif_set_rcpi_rssi_threshold() 51 arg.lowerthresh = 1; in wfx_hif_set_rcpi_rssi_threshold() 53 arg.upper_threshold = rssi_thold + rssi_hyst; in wfx_hif_set_rcpi_rssi_threshold() 54 arg.upper_threshold = (arg.upper_threshold + 110) * 2; in wfx_hif_set_rcpi_rssi_threshold() 55 arg.lower_threshold = rssi_thold; in wfx_hif_set_rcpi_rssi_threshold() [all …]
|
/openbmc/linux/arch/ia64/kernel/ |
H A D | unwind_decoder.c | 86 unw_decode_x1 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x1() argument 96 UNW_DEC_SPILL_SPREL(X1, t, abreg, off, arg); in unw_decode_x1() 98 UNW_DEC_SPILL_PSPREL(X1, t, abreg, off, arg); in unw_decode_x1() 103 unw_decode_x2 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x2() argument 114 UNW_DEC_RESTORE(X2, t, abreg, arg); in unw_decode_x2() 116 UNW_DEC_SPILL_REG(X2, t, abreg, x, ytreg, arg); in unw_decode_x2() 121 unw_decode_x3 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x3() argument 134 UNW_DEC_SPILL_SPREL_P(X3, qp, t, abreg, off, arg); in unw_decode_x3() 136 UNW_DEC_SPILL_PSPREL_P(X3, qp, t, abreg, off, arg); in unw_decode_x3() 141 unw_decode_x4 (unsigned char *dp, unsigned char code, void *arg) in unw_decode_x4() argument [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/display/include/ |
H A D | fixed31_32.h | 87 static inline struct fixed31_32 dc_fixpt_from_int(int arg) in dc_fixpt_from_int() argument 91 res.value = (long long) arg << FIXED31_32_BITS_PER_FRACTIONAL_PART; in dc_fixpt_from_int() 105 static inline struct fixed31_32 dc_fixpt_neg(struct fixed31_32 arg) in dc_fixpt_neg() argument 109 res.value = -arg.value; in dc_fixpt_neg() 118 static inline struct fixed31_32 dc_fixpt_abs(struct fixed31_32 arg) in dc_fixpt_abs() argument 120 if (arg.value < 0) in dc_fixpt_abs() 121 return dc_fixpt_neg(arg); in dc_fixpt_abs() 123 return arg; in dc_fixpt_abs() 189 struct fixed31_32 arg, in dc_fixpt_clamp() argument 193 if (dc_fixpt_le(arg, min_value)) in dc_fixpt_clamp() [all …]
|
/openbmc/linux/drivers/tee/optee/ |
H A D | rpc.c | 15 static void handle_rpc_func_cmd_get_time(struct optee_msg_arg *arg) in handle_rpc_func_cmd_get_time() argument 19 if (arg->num_params != 1) in handle_rpc_func_cmd_get_time() 21 if ((arg->params[0].attr & OPTEE_MSG_ATTR_TYPE_MASK) != in handle_rpc_func_cmd_get_time() 26 arg->params[0].u.value.a = ts.tv_sec; in handle_rpc_func_cmd_get_time() 27 arg->params[0].u.value.b = ts.tv_nsec; in handle_rpc_func_cmd_get_time() 29 arg->ret = TEEC_SUCCESS; in handle_rpc_func_cmd_get_time() 32 arg->ret = TEEC_ERROR_BAD_PARAMETERS; in handle_rpc_func_cmd_get_time() 37 struct optee_msg_arg *arg) in handle_rpc_func_cmd_i2c_transfer() argument 52 if (arg->num_params != ARRAY_SIZE(attr)) { in handle_rpc_func_cmd_i2c_transfer() 53 arg->ret = TEEC_ERROR_BAD_PARAMETERS; in handle_rpc_func_cmd_i2c_transfer() [all …]
|
/openbmc/u-boot/drivers/tee/optee/ |
H A D | supplicant.c | 16 static void cmd_shm_alloc(struct udevice *dev, struct optee_msg_arg *arg, in cmd_shm_alloc() argument 24 arg->ret_origin = TEE_ORIGIN_COMMS; in cmd_shm_alloc() 26 if (arg->num_params != 1 || in cmd_shm_alloc() 27 arg->params[0].attr != OPTEE_MSG_ATTR_TYPE_VALUE_INPUT) { in cmd_shm_alloc() 28 arg->ret = TEE_ERROR_BAD_PARAMETERS; in cmd_shm_alloc() 32 rc = __tee_shm_add(dev, 0, NULL, arg->params[0].u.value.b, in cmd_shm_alloc() 36 arg->ret = TEE_ERROR_OUT_OF_MEMORY; in cmd_shm_alloc() 38 arg->ret = TEE_ERROR_GENERIC; in cmd_shm_alloc() 44 arg->ret = TEE_ERROR_OUT_OF_MEMORY; in cmd_shm_alloc() 50 arg->params[0].attr = OPTEE_MSG_ATTR_TYPE_TMEM_OUTPUT | in cmd_shm_alloc() [all …]
|
/openbmc/linux/tools/perf/trace/beauty/ |
H A D | fcntl.c | 18 static size_t syscall_arg__scnprintf_fcntl_getfd(char *bf, size_t size, struct syscall_arg *arg) in syscall_arg__scnprintf_fcntl_getfd() argument 20 return fcntl__scnprintf_getfd(arg->val, bf, size, arg->show_string_prefix); in syscall_arg__scnprintf_fcntl_getfd() 31 static size_t syscall_arg__scnprintf_fcntl_getlease(char *bf, size_t size, struct syscall_arg *arg) in syscall_arg__scnprintf_fcntl_getlease() argument 33 return fcntl__scnprintf_getlease(arg->val, bf, size, arg->show_string_prefix); in syscall_arg__scnprintf_fcntl_getlease() 36 size_t syscall_arg__scnprintf_fcntl_cmd(char *bf, size_t size, struct syscall_arg *arg) in syscall_arg__scnprintf_fcntl_cmd() argument 38 if (arg->val == F_GETFL) { in syscall_arg__scnprintf_fcntl_cmd() 39 syscall_arg__set_ret_scnprintf(arg, syscall_arg__scnprintf_open_flags); in syscall_arg__scnprintf_fcntl_cmd() 42 if (arg->val == F_GETFD) { in syscall_arg__scnprintf_fcntl_cmd() 43 syscall_arg__set_ret_scnprintf(arg, syscall_arg__scnprintf_fcntl_getfd); in syscall_arg__scnprintf_fcntl_cmd() 46 if (arg->val == F_DUPFD_CLOEXEC || arg->val == F_DUPFD) { in syscall_arg__scnprintf_fcntl_cmd() [all …]
|
H A D | beauty.h | 122 unsigned long syscall_arg__val(struct syscall_arg *arg, u8 idx); 124 size_t syscall_arg__scnprintf_strarray_flags(char *bf, size_t size, struct syscall_arg *arg); 127 bool syscall_arg__strtoul_strarray(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); 130 bool syscall_arg__strtoul_strarray_flags(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); 133 bool syscall_arg__strtoul_strarrays(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); 136 size_t syscall_arg__scnprintf_x86_irq_vectors(char *bf, size_t size, struct syscall_arg *arg); 139 bool syscall_arg__strtoul_x86_irq_vectors(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); 142 size_t syscall_arg__scnprintf_x86_MSR(char *bf, size_t size, struct syscall_arg *arg); 145 bool syscall_arg__strtoul_x86_MSR(char *bf, size_t size, struct syscall_arg *arg, u64 *ret); 148 size_t syscall_arg__scnprintf_strarrays(char *bf, size_t size, struct syscall_arg *arg); [all …]
|
/openbmc/linux/arch/powerpc/perf/ |
H A D | hv-gpci.c | 134 size_t *n, struct hv_gpci_request_buffer *arg) in systeminfo_gpci_request() argument 139 arg->params.counter_request = cpu_to_be32(req); in systeminfo_gpci_request() 140 arg->params.starting_index = cpu_to_be32(starting_index); in systeminfo_gpci_request() 141 arg->params.secondary_index = cpu_to_be16(secondary_index); in systeminfo_gpci_request() 144 virt_to_phys(arg), HGPCI_REQ_BUFFER_SIZE); in systeminfo_gpci_request() 176 for (i = 0; i < be16_to_cpu(arg->params.returned_values); i++) { in systeminfo_gpci_request() 177 j = i * be16_to_cpu(arg->params.cv_element_size); in systeminfo_gpci_request() 179 for (; j < (i + 1) * be16_to_cpu(arg->params.cv_element_size); j++) in systeminfo_gpci_request() 180 *n += sprintf(buf + *n, "%02x", (u8)arg->bytes[j]); in systeminfo_gpci_request() 195 struct hv_gpci_request_buffer *arg; in processor_bus_topology_show() local [all …]
|
/openbmc/linux/drivers/scsi/elx/libefc/ |
H A D | efc_fabric.h | 19 enum efc_sm_event evt, void *arg); 22 enum efc_sm_event evt, void *arg); 25 enum efc_sm_event evt, void *arg); 28 enum efc_sm_event evt, void *arg); 32 enum efc_sm_event evt, void *arg); 35 enum efc_sm_event evt, void *arg); 38 enum efc_sm_event evt, void *arg); 41 __efc_ns_init(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg); 44 enum efc_sm_event evt, void *arg); 47 enum efc_sm_event evt, void *arg); [all …]
|
H A D | efc_device.h | 26 enum efc_sm_event evt, void *arg); 29 enum efc_sm_event evt, void *arg); 31 __efc_d_init(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg); 34 enum efc_sm_event evt, void *arg); 37 enum efc_sm_event evt, void *arg); 40 enum efc_sm_event evt, void *arg); 43 enum efc_sm_event evt, void *arg); 46 enum efc_sm_event evt, void *arg); 49 enum efc_sm_event evt, void *arg); 52 enum efc_sm_event evt, void *arg); [all …]
|
/openbmc/linux/drivers/acpi/acpica/ |
H A D | dsfield.c | 39 union acpi_parse_object *arg); 123 union acpi_parse_object *arg; in acpi_ds_create_buffer_field() local 139 arg = acpi_ps_get_arg(op, 3); in acpi_ds_create_buffer_field() 143 arg = acpi_ps_get_arg(op, 2); in acpi_ds_create_buffer_field() 146 if (!arg) { in acpi_ds_create_buffer_field() 177 arg->common.value.string, ACPI_TYPE_ANY, in acpi_ds_create_buffer_field() 185 arg->common.value.string, status); in acpi_ds_create_buffer_field() 262 union acpi_parse_object *arg) in acpi_ds_get_field_names() argument 282 while (arg) { in acpi_ds_get_field_names() 290 switch (arg->common.aml_opcode) { in acpi_ds_get_field_names() [all …]
|
H A D | pstree.c | 39 union acpi_parse_object *arg = NULL; in acpi_ps_get_arg() local 71 arg = op->common.value.arg; in acpi_ps_get_arg() 72 while (arg && argn) { in acpi_ps_get_arg() 74 arg = arg->common.next; in acpi_ps_get_arg() 77 return (arg); in acpi_ps_get_arg() 94 acpi_ps_append_arg(union acpi_parse_object *op, union acpi_parse_object *arg) in acpi_ps_append_arg() argument 128 if (op->common.value.arg) { in acpi_ps_append_arg() 132 prev_arg = op->common.value.arg; in acpi_ps_append_arg() 136 prev_arg->common.next = arg; in acpi_ps_append_arg() 140 op->common.value.arg = arg; in acpi_ps_append_arg() [all …]
|
H A D | psargs.c | 201 union acpi_parse_object *arg, u8 possible_method_call) in acpi_ps_get_next_namepath() argument 213 acpi_ps_init_op(arg, AML_INT_NAMEPATH_OP); in acpi_ps_get_next_namepath() 218 arg->common.value.name = path; in acpi_ps_get_next_namepath() 253 acpi_ps_init_op(arg, AML_INT_METHODCALL_OP); in acpi_ps_get_next_namepath() 270 acpi_ps_init_op(arg, AML_INT_METHODCALL_OP); in acpi_ps_get_next_namepath() 276 acpi_ps_append_arg(arg, name_op); in acpi_ps_get_next_namepath() 320 else if ((arg->common.parent) && in acpi_ps_get_next_namepath() 321 ((arg->common.parent->common.aml_opcode == in acpi_ps_get_next_namepath() 323 || (arg->common.parent->common.aml_opcode == in acpi_ps_get_next_namepath() 345 arg->common.value.name = path; in acpi_ps_get_next_namepath() [all …]
|
/openbmc/linux/drivers/infiniband/sw/rxe/ |
H A D | rxe_hdr.h | 84 static inline u8 __bth_opcode(void *arg) in __bth_opcode() argument 86 struct rxe_bth *bth = arg; in __bth_opcode() 91 static inline void __bth_set_opcode(void *arg, u8 opcode) in __bth_set_opcode() argument 93 struct rxe_bth *bth = arg; in __bth_set_opcode() 98 static inline u8 __bth_se(void *arg) in __bth_se() argument 100 struct rxe_bth *bth = arg; in __bth_se() 105 static inline void __bth_set_se(void *arg, int se) in __bth_set_se() argument 107 struct rxe_bth *bth = arg; in __bth_set_se() 115 static inline u8 __bth_mig(void *arg) in __bth_mig() argument 117 struct rxe_bth *bth = arg; in __bth_mig() [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/basics/ |
H A D | fixpt31_32.c | 34 long long arg) in abs_i64() argument 36 if (arg > 0) in abs_i64() 37 return (unsigned long long)arg; in abs_i64() 39 return (unsigned long long)(-arg); in abs_i64() 174 struct fixed31_32 dc_fixpt_sqr(struct fixed31_32 arg) in dc_fixpt_sqr() argument 178 unsigned long long arg_value = abs_i64(arg.value); in dc_fixpt_sqr() 214 struct fixed31_32 dc_fixpt_recip(struct fixed31_32 arg) in dc_fixpt_recip() argument 221 ASSERT(arg.value); in dc_fixpt_recip() 225 arg.value); in dc_fixpt_recip() 228 struct fixed31_32 dc_fixpt_sinc(struct fixed31_32 arg) in dc_fixpt_sinc() argument [all …]
|
/openbmc/qemu/target/xtensa/ |
H A D | translate.c | 447 static uint32_t test_exceptions_sr(DisasContext *dc, const OpcodeArg arg[], in test_exceptions_sr() argument 454 const OpcodeArg arg[], in test_exceptions_ccompare() argument 462 return test_exceptions_sr(dc, arg, par); in test_exceptions_ccompare() 465 static uint32_t test_exceptions_dbreak(DisasContext *dc, const OpcodeArg arg[], in test_exceptions_dbreak() argument 479 return test_exceptions_sr(dc, arg, par); in test_exceptions_dbreak() 482 static uint32_t test_exceptions_ibreak(DisasContext *dc, const OpcodeArg arg[], in test_exceptions_ibreak() argument 490 return test_exceptions_sr(dc, arg, par); in test_exceptions_ibreak() 493 static uint32_t test_exceptions_hpi(DisasContext *dc, const OpcodeArg arg[], in test_exceptions_hpi() argument 510 return test_exceptions_sr(dc, arg, par); in test_exceptions_hpi() 556 static void gen_zero_check(DisasContext *dc, const OpcodeArg arg[]) in gen_zero_check() argument [all …]
|
/openbmc/linux/drivers/media/platform/rockchip/rkisp1/ |
H A D | rkisp1-params.c | 56 const struct rkisp1_cif_isp_dpcc_config *arg) in rkisp1_dpcc_config() argument 69 mode |= arg->mode & RKISP1_CIF_ISP_DPCC_MODE_STAGE1_ENABLE; in rkisp1_dpcc_config() 73 arg->output_mode & RKISP1_CIF_ISP_DPCC_OUTPUT_MODE_MASK); in rkisp1_dpcc_config() 75 arg->set_use & RKISP1_CIF_ISP_DPCC_SET_USE_MASK); in rkisp1_dpcc_config() 79 arg->methods[i].method & in rkisp1_dpcc_config() 82 arg->methods[i].line_thresh & in rkisp1_dpcc_config() 85 arg->methods[i].line_mad_fac & in rkisp1_dpcc_config() 88 arg->methods[i].pg_fac & in rkisp1_dpcc_config() 91 arg->methods[i].rnd_thresh & in rkisp1_dpcc_config() 94 arg->methods[i].rg_fac & in rkisp1_dpcc_config() [all …]
|
/openbmc/qemu/target/microblaze/ |
H A D | translate.c | 202 static bool do_typea(DisasContext *dc, arg_typea *arg, bool side_effects, in do_typea() argument 207 if (arg->rd == 0 && !side_effects) { in do_typea() 211 rd = reg_for_write(dc, arg->rd); in do_typea() 212 ra = reg_for_read(dc, arg->ra); in do_typea() 213 rb = reg_for_read(dc, arg->rb); in do_typea() 218 static bool do_typea0(DisasContext *dc, arg_typea0 *arg, bool side_effects, in do_typea0() argument 223 if (arg->rd == 0 && !side_effects) { in do_typea0() 227 rd = reg_for_write(dc, arg->rd); in do_typea0() 228 ra = reg_for_read(dc, arg->ra); in do_typea0() 233 static bool do_typeb_imm(DisasContext *dc, arg_typeb *arg, bool side_effects, in do_typeb_imm() argument [all …]
|
/openbmc/linux/drivers/net/wireless/st/cw1200/ |
H A D | wsm.c | 83 void *arg, u16 cmd, long tmo); 92 void *arg, in wsm_generic_confirm() argument 105 int wsm_configuration(struct cw1200_common *priv, struct wsm_configuration *arg) in wsm_configuration() argument 112 WSM_PUT32(buf, arg->dot11MaxTransmitMsduLifeTime); in wsm_configuration() 113 WSM_PUT32(buf, arg->dot11MaxReceiveLifeTime); in wsm_configuration() 114 WSM_PUT32(buf, arg->dot11RtsThreshold); in wsm_configuration() 117 WSM_PUT16(buf, arg->dpdData_size + 12); in wsm_configuration() 119 WSM_PUT(buf, arg->dot11StationId, ETH_ALEN); in wsm_configuration() 121 WSM_PUT(buf, arg->dpdData, arg->dpdData_size); in wsm_configuration() 123 ret = wsm_cmd_send(priv, buf, arg, in wsm_configuration() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pydbus/ |
H A D | 0001-make-direction-attribute-conforming-to-introspect.dt.patch | 10 <!ATTRLIST arg direction (in|out) "in"> 32 - self._inargs = [(arg.attrib.get("name", ""), arg.attrib["type"]) for arg in method if arg.tag =… 33 - self._outargs = [arg.attrib["type"] for arg in method if arg.tag == "arg" and arg.attrib["direct… 34 + self._inargs = [(arg.attrib.get("name", ""), arg.attrib["type"]) for arg in method if arg.tag =… 35 + self._outargs = [arg.attrib["type"] for arg in method if arg.tag == "arg" and arg.attrib.get("di…
|
/openbmc/linux/sound/drivers/opl3/ |
H A D | opl3_oss.c | 11 static int snd_opl3_open_seq_oss(struct snd_seq_oss_arg *arg, void *closure); 12 static int snd_opl3_close_seq_oss(struct snd_seq_oss_arg *arg); 13 static int snd_opl3_ioctl_seq_oss(struct snd_seq_oss_arg *arg, unsigned int cmd, unsigned long ioar… 14 static int snd_opl3_load_patch_seq_oss(struct snd_seq_oss_arg *arg, int format, const char __user *… 15 static int snd_opl3_reset_seq_oss(struct snd_seq_oss_arg *arg); 92 struct snd_seq_oss_reg *arg; in snd_opl3_init_seq_oss() local 101 arg = SNDRV_SEQ_DEVICE_ARGPTR(dev); in snd_opl3_init_seq_oss() 102 arg->type = SYNTH_TYPE_FM; in snd_opl3_init_seq_oss() 104 arg->subtype = FM_TYPE_ADLIB; in snd_opl3_init_seq_oss() 105 arg->nvoices = MAX_OPL2_VOICES; in snd_opl3_init_seq_oss() [all …]
|
/openbmc/qemu/target/hppa/ |
H A D | fpu_helper.c | 96 float32 HELPER(fsqrt_s)(CPUHPPAState *env, float32 arg) in HELPER() 98 float32 ret = float32_sqrt(arg, &env->fp_status); in HELPER() 103 float32 HELPER(frnd_s)(CPUHPPAState *env, float32 arg) in HELPER() 105 float32 ret = float32_round_to_int(arg, &env->fp_status); in HELPER() 138 float64 HELPER(fsqrt_d)(CPUHPPAState *env, float64 arg) in HELPER() 140 float64 ret = float64_sqrt(arg, &env->fp_status); in HELPER() 145 float64 HELPER(frnd_d)(CPUHPPAState *env, float64 arg) in HELPER() 147 float64 ret = float64_round_to_int(arg, &env->fp_status); in HELPER() 180 float64 HELPER(fcnv_s_d)(CPUHPPAState *env, float32 arg) in HELPER() 182 float64 ret = float32_to_float64(arg, &env->fp_status); in HELPER() [all …]
|
/openbmc/u-boot/arch/sandbox/cpu/ |
H A D | start.c | 74 static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg) in sandbox_cmdline_cb_help() argument 109 const char *arg) in sandbox_cmdline_cb_boot() argument 117 const char *arg) in sandbox_cmdline_cb_command() argument 119 state->cmd = arg; in sandbox_cmdline_cb_command() 124 static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg) in sandbox_cmdline_cb_fdt() argument 126 state->fdt_fname = arg; in sandbox_cmdline_cb_fdt() 132 const char *arg) in sandbox_cmdline_cb_default_fdt() argument 151 const char *arg) in sandbox_cmdline_cb_interactive() argument 160 const char *arg) in sandbox_cmdline_cb_jump() argument 163 state->jumped_fname = arg; in sandbox_cmdline_cb_jump() [all …]
|
/openbmc/qemu/accel/tcg/ |
H A D | tcg-runtime.c | 111 uint32_t HELPER(clz_i32)(uint32_t arg, uint32_t zero_val) in HELPER() 113 return arg ? clz32(arg) : zero_val; in HELPER() 116 uint32_t HELPER(ctz_i32)(uint32_t arg, uint32_t zero_val) in HELPER() 118 return arg ? ctz32(arg) : zero_val; in HELPER() 121 uint64_t HELPER(clz_i64)(uint64_t arg, uint64_t zero_val) in HELPER() 123 return arg ? clz64(arg) : zero_val; in HELPER() 126 uint64_t HELPER(ctz_i64)(uint64_t arg, uint64_t zero_val) in HELPER() 128 return arg ? ctz64(arg) : zero_val; in HELPER() 131 uint32_t HELPER(clrsb_i32)(uint32_t arg) in HELPER() 133 return clrsb32(arg); in HELPER() [all …]
|
/openbmc/linux/tools/testing/selftests/net/mptcp/ |
H A D | pm_nl_ctl.c | 350 int arg; in dsf() local 367 for (arg = 2; arg < argc; arg++) { in dsf() 368 if (!strcmp(argv[arg], "lip")) { in dsf() 369 if (++arg >= argc) in dsf() 372 params[0] = argv[arg]; in dsf() 373 } else if (!strcmp(argv[arg], "lport")) { in dsf() 374 if (++arg >= argc) in dsf() 377 params[1] = argv[arg]; in dsf() 378 } else if (!strcmp(argv[arg], "rip")) { in dsf() 379 if (++arg >= argc) in dsf() [all …]
|