Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/scsi/smp/common/
H A Dsmp.c327 char *src_str; in smp_phy_event_src_str() local
333 src_str = "No event"; in smp_phy_event_src_str()
336 src_str = "Invalid DWORD count"; in smp_phy_event_src_str()
339 src_str = "Running disparity error count"; in smp_phy_event_src_str()
342 src_str = "Loss of DWORD sync count"; in smp_phy_event_src_str()
345 src_str = "PHY reset problem count"; in smp_phy_event_src_str()
348 src_str = "Elasticity buffer overflow count"; in smp_phy_event_src_str()
351 src_str = "Received ERROR count"; in smp_phy_event_src_str()
354 src_str = "Received address frame error count"; in smp_phy_event_src_str()
357 src_str = "Transmitted abandon-class OPEN_REJECT count"; in smp_phy_event_src_str()
[all …]
/illumos-gate/usr/src/cmd/sunpc/other/
H A Ddos2unix.c105 unsigned char *src_str, *dest_str; in main() local
392 src_str = dest_str = &tmp_buff[0]; in main()
397 if( *src_str == '\r'){ in main()
398 src_str++; in main()
402 *dest_str++ = dos_to_iso[*src_str++]; in main()
411 if( *src_str == '\r'){ in main()
412 src_str++; in main()
415 else if ( *src_str > 127 ){ in main()
417 src_str++; in main()
422 *dest_str++ = *src_str++; in main()
[all …]
H A Dunix2dos.c106 unsigned char *src_str, *dest_str; in main() local
400 src_str = &tmp_buff[100]; in main()
406 if (*src_str == '\n') { in main()
411 *dest_str++ = iso_to_dos[*src_str++]; in main()
418 if (*src_str > 127) { in main()
421 src_str++; in main()
424 if (*src_str == '\n') { in main()
428 *dest_str++ = *src_str++; in main()
437 if (*src_str == '\n') { in main()
441 *dest_str++ = *src_str++; in main()