Lines Matching refs:y

67 static void             PrintType       ( s16 x, s16 y, NWC24FriendInfo* info );
68 static void PrintTypeCore ( s16 x, s16 y, u32 type, BOOL bEditMode );
69 static void PrintStatus ( s16 x, s16 y, NWC24FriendInfo* info );
70 static void PrintStatusCore ( s16 x, s16 y, u32 status, BOOL bEditMode );
71 static void PrintFdId ( s16 x, s16 y, NWC24FriendInfo* info );
72 static void PrintFdIdCore ( s16 x, s16 y, const char* strFdId, BOOL bEditMode );
73 static void PrintName ( s16 x, s16 y, NWC24FriendInfo* info );
74 static void PrintNameCore ( s16 x, s16 y, const char* name, BOOL bEditMode );
75 static void PrintAddress ( s16 x, s16 y, NWC24FriendInfo* info );
76 static void PrintWiiId ( s16 x, s16 y, const char* strWiiId, BOOL bEditMode );
77 static void PrintMailAddr ( s16 x, s16 y, const char* mailAddr, BOOL bEditMode );
375 static void PrintType( s16 x, s16 y, NWC24FriendInfo* info ) in PrintType() argument
379 PrintTypeCore( x, y, info->attr.type, FALSE ); in PrintType()
384 static void PrintTypeCore( s16 x, s16 y, u32 type, BOOL bEditMode ) in PrintTypeCore() argument
390 y += LARGE_FONT_SIZE - FONT_SIZE; in PrintTypeCore()
395 (void)DEMORFPrintf( x, y, 0, "Wii" ); in PrintTypeCore()
399 (void)DEMORFPrintf( x, y, 0, "Public" ); in PrintTypeCore()
403 (void)DEMORFPrintf( x, y, 0, "Invalid type" ); in PrintTypeCore()
419 static void PrintStatus( s16 x, s16 y, NWC24FriendInfo* info ) in PrintStatus() argument
423 PrintStatusCore( x, y, info->attr.status, FALSE ); in PrintStatus()
428 static void PrintStatusCore( s16 x, s16 y, u32 status, BOOL bEditMode ) in PrintStatusCore() argument
434 y += LARGE_FONT_SIZE - FONT_SIZE; in PrintStatusCore()
439 (void)DEMORFPrintf( x, y, 0, "Pending" ); in PrintStatusCore()
443 (void)DEMORFPrintf( x, y, 0, "Established" ); in PrintStatusCore()
447 (void)DEMORFPrintf( x, y, 0, "Invalid status" ); in PrintStatusCore()
463 static void PrintFdId( s16 x, s16 y, NWC24FriendInfo* info ) in PrintFdId() argument
468 PrintFdIdCore( x, y, strFdId, FALSE ); in PrintFdId()
473 static void PrintFdIdCore( s16 x, s16 y, const char* strFdId, BOOL bEditMode ) in PrintFdIdCore() argument
488 y += LARGE_FONT_SIZE - FONT_SIZE; in PrintFdIdCore()
490 x += DEMORFPrintf( x, y, 0, "%c", strFdId[i] ); in PrintFdIdCore()
494 x += DEMORFPrintf( x, y, 0, " " ); in PrintFdIdCore()
510 static void PrintName( s16 x, s16 y, NWC24FriendInfo* info ) in PrintName() argument
516 PrintNameCore( x, y, name, FALSE ); in PrintName()
521 static void PrintNameCore( s16 x, s16 y, const char* name, BOOL bEditMode ) in PrintNameCore() argument
539 y += LARGE_FONT_SIZE - FONT_SIZE; in PrintNameCore()
542 x += DEMORFPutsEx( x, y, 0, (char*)name, g_screenWidth, charSize ); in PrintNameCore()
559 static void PrintAddress( s16 x, s16 y, NWC24FriendInfo* info ) in PrintAddress() argument
568 PrintWiiId( x, y, strWiiId, FALSE ); in PrintAddress()
572 PrintMailAddr( x, y, info->addr.mailAddr, FALSE ); in PrintAddress()
578 static void PrintWiiId( s16 x, s16 y, const char* strWiiId, BOOL bEditMode ) in PrintWiiId() argument
585 (void)DEMORFPrintf( x, y, 0, "Bad Wii ID" ); in PrintWiiId()
601 y += LARGE_FONT_SIZE - FONT_SIZE; in PrintWiiId()
603 x += DEMORFPrintf( x, y, 0, "%c", strWiiId[i] ); in PrintWiiId()
607 x += DEMORFPrintf( x, y, 0, " " ); in PrintWiiId()
616 static void PrintMailAddr( s16 x, s16 y, const char* mailAddr, BOOL bEditMode ) in PrintMailAddr() argument
621 s16 printY = y; in PrintMailAddr()