Home
last modified time | relevance | path

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

/third_party/boost/tools/build/src/engine/
Dfileunix.cpp74 struct ar_hdr /* archive file member header - printable ascii */ struct
264 #define SARHDR sizeof( struct ar_hdr )
269 struct ar_hdr ar_hdr; in file_collect_archive_content_() local
293 while ( ( read( fd, &ar_hdr, SARHDR ) == SARHDR ) && in file_collect_archive_content_()
294 !( memcmp( ar_hdr.ar_fmag, ARFMAG, SARFMAG ) in file_collect_archive_content_()
297 && memcmp( ar_hdr.ar_fmag, ARFZMAG, SARFMAG ) in file_collect_archive_content_()
310 … size_t ar_hdr_name_size = sizeof( ar_hdr.ar_name ); // Workaround for sizeof strncpy warning. in file_collect_archive_content_()
311 strncpy( lar_name, ar_hdr.ar_name, ar_hdr_name_size ); in file_collect_archive_content_()
313 sscanf( ar_hdr.ar_date, "%ld", &lar_date ); in file_collect_archive_content_()
314 sscanf( ar_hdr.ar_size, "%ld", &lar_size ); in file_collect_archive_content_()
[all …]
Dfilent.cpp339 struct ar_hdr struct
351 #define SARHDR sizeof( struct ar_hdr ) argument
407 struct ar_hdr ar_hdr; in file_collect_archive_content_() local
430 while ( ( read( fd, &ar_hdr, SARHDR ) == SARHDR ) && in file_collect_archive_content_()
431 !memcmp( ar_hdr.ar_fmag, ARFMAG, SARFMAG ) ) in file_collect_archive_content_()
438 sscanf( ar_hdr.ar_date, "%ld", &lar_date ); in file_collect_archive_content_()
439 sscanf( ar_hdr.ar_size, "%ld", &lar_size ); in file_collect_archive_content_()
443 if ( ar_hdr.ar_name[ 0 ] == '/' && ar_hdr.ar_name[ 1 ] == '/' ) in file_collect_archive_content_()
456 else if ( ar_hdr.ar_name[ 0 ] == '/' && ar_hdr.ar_name[ 1 ] != ' ' ) in file_collect_archive_content_()
462 name = string_table + atoi( ar_hdr.ar_name + 1 ); in file_collect_archive_content_()
[all …]
/third_party/musl/porting/uniproton/kernel/include/
Dar.h12 struct ar_hdr { struct
/third_party/musl/include/
Dar.h12 struct ar_hdr { struct
/third_party/musl/porting/liteos_m/kernel/include/
Dar.h12 struct ar_hdr { struct
/third_party/musl/ndk_musl_include/
Dar.h12 struct ar_hdr { struct
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dar.h12 struct ar_hdr { struct
/third_party/glib/gmodule/
Dgmodule-ar.c52 struct ar_hdr ar_header; in _g_module_get_member()