HomeSort by relevance Sort by last modified time
    Searched refs:MIN_SIZEOF (Results 1 - 2 of 2) sorted by null

  /external/openssh/
loginrec.c 217 #define MIN_SIZEOF(s1,s2) (sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2))
317 /* No MIN_SIZEOF here - we absolutely *must not* truncate the
695 MIN_SIZEOF(ut->ut_name, li->username));
698 MIN_SIZEOF(ut->ut_host, li->hostname));
768 MIN_SIZEOF(utx->ut_user, li->username));
780 MIN_SIZEOF(utx->ut_host, li->hostname));
1168 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
1229 MIN_SIZEOF(li->line, ut.ut_line));
1232 MIN_SIZEOF(li->hostname, ut.ut_host));
    [all...]
  /external/dropbear/
loginrec.c 186 #define MIN_SIZEOF(s1,s2) ( sizeof(s1) < sizeof(s2) ? sizeof(s1) : sizeof(s2) )
539 strncpy(ut->ut_name, li->username, MIN_SIZEOF(ut->ut_name, li->username));
541 strncpy(ut->ut_host, li->hostname, MIN_SIZEOF(ut->ut_host, li->hostname));
610 strncpy(utx->ut_name, li->username, MIN_SIZEOF(utx->ut_name, li->username));
621 strncpy(utx->ut_host, li->hostname, MIN_SIZEOF(utx->ut_host, li->hostname));
981 MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
1040 MIN_SIZEOF(li->line, ut.ut_line));
1043 MIN_SIZEOF(li->hostname, ut.ut_host));
1136 MIN_SIZEOF(li->username, utx->ut_name)) == 0 ) {
1198 MIN_SIZEOF(li->hostname, utx.ut_host))
    [all...]

Completed in 27 milliseconds