Home
last modified time | relevance | path

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

/external/iperf3/src/
Dunits.c269 double inNum, char inFormat) in unit_snprintf() argument
276 if (!isupper((int) inFormat)) in unit_snprintf()
280 switch (toupper((u_char)inFormat)) in unit_snprintf()
304 if (isupper((int) inFormat)) in unit_snprintf()
323 if (!isupper((int) inFormat)) in unit_snprintf()
Dunits.h34 void unit_snprintf( char *s, int inLen, double inNum, char inFormat );
/external/testng/src/main/java/org/testng/
DTimeBombSkipException.java86 public TimeBombSkipException(String msg, String date, String inFormat, String outFormat) { in TimeBombSkipException() argument
88 m_inFormat= new SimpleDateFormat(inFormat); in TimeBombSkipException()
170 …public TimeBombSkipException(String msg, String date, String inFormat, String outFormat, Throwable… in TimeBombSkipException() argument
172 m_inFormat= new SimpleDateFormat(inFormat); in TimeBombSkipException()
/external/mdnsresponder/mDNSShared/
DDebugServices.c219 typedef int ( *DebugMacOSXLogFunctionPtr )( const char *inFormat, ... );
503 DEBUG_EXPORT size_t DebugPrintF( DebugLevel inLevel, const char *inFormat, ... ) in DebugPrintF() argument
516 va_start( args, inFormat ); in DebugPrintF()
517 n = DebugPrintFVAList( inLevel, inFormat, args ); in DebugPrintF()
528 DEBUG_EXPORT size_t DebugPrintFVAList( DebugLevel inLevel, const char *inFormat, va_list inArgs ) in DebugPrintFVAList() argument
541 n = DebugSNPrintFVAList( buffer, sizeof( buffer ), inFormat, inArgs ); in DebugPrintFVAList()
844 …typedef void ( *iDebugLogFunctionPtr )( uint32_t inLevel, uint32_t inTag, const char *inFormat, ..… in DebugiDebugPrint()
855 …__private_extern__ void iDebugLogInternal( uint32_t inLevel, uint32_t inTag, const char *inFormat,… in DebugiDebugPrint()
870 extern void kprintf( const char *inFormat, ... ); in DebugKPrintFPrint()
883 extern void IOLog( const char *inFormat, ... ); in DebugMacOSXIOLogPrint()
DDebugServices.h1406 DEBUG_EXPORT size_t DebugPrintF( DebugLevel inLevel, const char *inFormat, ... );
1416 DEBUG_EXPORT size_t DebugPrintFVAList( DebugLevel inLevel, const char *inFormat, va_list inArgs );
/external/mesa3d/src/mesa/main/
Dglformats.h43 _mesa_compute_component_mapping(GLenum inFormat, GLenum outFormat, GLubyte *map);
Dglformats.c204 _mesa_compute_component_mapping(GLenum inFormat, GLenum outFormat, GLubyte *map) in _mesa_compute_component_mapping() argument
206 const int inFmt = get_map_idx(inFormat); in _mesa_compute_component_mapping()
220 inFormat, _mesa_enum_to_string(inFormat), in _mesa_compute_component_mapping()
/external/mdnsresponder/mDNSWindows/
DmDNSWin32.h130 typedef void (*ReportStatusFunc)(int inType, const char *inFormat, ...);
DmDNSWin32.c2195 mDNSexport void debugf_( const char *inFormat, ... ) in debugf_() argument
2201 va_start( args, inFormat ); in debugf_()
2202 length = mDNS_vsnprintf( buffer, sizeof( buffer ), inFormat, args ); in debugf_()
2214 mDNSexport void verbosedebugf_( const char *inFormat, ... ) in verbosedebugf_() argument
2220 va_start( args, inFormat ); in verbosedebugf_()
2221 length = mDNS_vsnprintf( buffer, sizeof( buffer ), inFormat, args ); in verbosedebugf_()
/external/mdnsresponder/mDNSWindows/SystemService/
DService.c128 static void ReportStatus( int inType, const char *inFormat, ... );
798 static void ReportStatus( int inType, const char *inFormat, ... ) in ReportStatus() argument
804 va_start( args, inFormat ); in ReportStatus()
811 vsprintf( s, inFormat, args ); in ReportStatus()
820 n = vfprintf( stderr, inFormat, args ); in ReportStatus()