Home
last modified time | relevance | path

Searched refs:arg_ulong (Results 1 – 1 of 1) sorted by relevance

/openbmc/ipmitool/lib/
H A Dhelper.c269 uint64_t arg_ulong = 0; in str2uint() local
273 if ( (rc = str2ulong(str, &arg_ulong)) != 0) { in str2uint()
278 if (arg_ulong > UINT32_MAX) in str2uint()
281 *uint_ptr = (uint32_t)arg_ulong; in str2uint()
323 uint64_t arg_ulong = 0; in str2ushort() local
327 if ( (rc = str2ulong(str, &arg_ulong)) != 0 ) { in str2ushort()
332 if (arg_ulong > UINT16_MAX) in str2ushort()
335 *ushrt_ptr = (uint16_t)arg_ulong; in str2ushort()
376 uint64_t arg_ulong = 0; in str2uchar() local
380 if ( (rc = str2ulong(str, &arg_ulong)) != 0 ) { in str2uchar()
[all …]