Home
last modified time | relevance | path

Searched refs:fts (Results 1 - 17 of 17) sorted by relevance

/third_party/selinux/libselinux/utils/
H A Dselabel_get_digests_all_partial_matches.c7 #include <fts.h>
34 FTS *fts; in main() local
86 fts = fts_open(paths, fts_flags, NULL); in main()
87 if (!fts) { in main()
88 printf("fts error on %s: %s\n", in main()
93 while ((ftsent = fts_read(fts)) != NULL) { in main()
168 (void) fts_close(fts); in main()
/third_party/selinux/libselinux/src/
H A Dselinux_restorecon.c17 #include <include/fts.h>
905 FTS *fts; member
918 FTS *fts = state->fts; in selinux_restorecon_thread() local
935 while (((void)(errno = 0), ftsent = fts_read(fts)) != NULL) { in selinux_restorecon_thread()
960 fts_set(fts, ftsent, FTS_SKIP); in selinux_restorecon_thread()
969 fts_set(fts, ftsent, FTS_SKIP); in selinux_restorecon_thread()
978 fts_set(fts, ftsent, FTS_SKIP); in selinux_restorecon_thread()
984 fts_set(fts, ftsent, FTS_SKIP); in selinux_restorecon_thread()
989 fts_set(fts, ftsen in selinux_restorecon_thread()
1562 FTS *fts; selinux_restorecon_xattr() local
[all...]
/third_party/elfutils/libdwfl/
H A Dlinux-kernel-modules.c29 /* In case we have a bad fts we include this before config.h because it
32 Also, include sys/types.h before fts. On some systems fts.h is not self
36 #include <fts.h>
54 /* If fts.h is included before config.h, its indirect inclusions may not
63 #include <fts.h>
399 FTS *fts = fts_open (modulesdir, FTS_NOSTAT | FTS_LOGICAL, NULL); in dwfl_linux_kernel_report_offline() local
402 if (fts == NULL) in dwfl_linux_kernel_report_offline()
409 while ((f = fts_read (fts)) != NULL) in dwfl_linux_kernel_report_offline()
416 fts_set (fts, in dwfl_linux_kernel_report_offline()
[all...]
/third_party/skia/tests/
H A DPathOpsInverseTest.cpp11 const SkPathFillType fts[] = { in DEF_TEST() local
18 for (auto oneFill : fts) { in DEF_TEST()
23 for (auto twoFill : fts) { in DEF_TEST()
H A DPathOpsOpRectThreadedTest.cpp26 const SkPathFillType fts[] = { SkPathFillType::kWinding, SkPathFillType::kEvenOdd }; in testPathOpsRectsMain() local
33 for (auto e : fts) { in testPathOpsRectsMain()
34 for (auto f : fts) { in testPathOpsRectsMain()
115 const SkPathFillType fts[] = { in testPathOpsFastMain() local
126 for (auto e : fts) { in testPathOpsFastMain()
127 for (auto f : fts) { in testPathOpsFastMain()
H A DPathOpsOpCircleThreadedTest.cpp19 const SkPathFillType fts[] = { SkPathFillType::kWinding, SkPathFillType::kEvenOdd }; in testOpCirclesMain() local
26 for (auto e : fts) { in testOpCirclesMain()
27 for (auto f : fts) { in testOpCirclesMain()
H A DPathOpsOpCubicThreadedTest.cpp19 const SkPathFillType fts[] = { SkPathFillType::kWinding, SkPathFillType::kEvenOdd }; in testOpCubicsMain() local
26 for (auto e : fts) { in testOpCubicsMain()
27 for (auto f : fts) { in testOpCubicsMain()
/third_party/lzma/CPP/Windows/
H A DTimeUtils.h123 inline void PropVariant_SetFrom_FiTime(NWindows::NCOM::CPropVariant &prop, const CFiTime &fts) in PropVariant_SetFrom_FiTime() argument
126 PropVariant_SetFrom_NtfsTime(prop, fts); in PropVariant_SetFrom_FiTime()
130 FiTime_To_FILETIME_ns100(fts, ft, ns100); in PropVariant_SetFrom_FiTime()
/third_party/FreeBSD/include/
H A Dfts.h31 * @(#)fts.h 8.3 (Berkeley) 8/14/94
48 // https://github.com/freebsd/freebsd-src/blob/373ffc6/lib/libc/gen/fts-compat.c#L653
169 #define fts_get_clientptr(fts) ((fts)->fts_clientptr)
/third_party/elfutils/debuginfod/
H A Ddebuginfod-client.c32 /* In case we have a bad fts we include this before config.h because it
35 Also, include sys/types.h before fts. On some systems fts.h is not self
39 #include <fts.h>
83 #include <fts.h>
96 /* If fts.h is included before config.h, its indirect inclusions may not
105 #include <fts.h>
324 FTS *fts = fts_open(dirs, 0, NULL); in debuginfod_clean_cache() local
325 if (fts == NULL) in debuginfod_clean_cache()
336 while ((f = fts_read(fts)) ! in debuginfod_clean_cache()
[all...]
H A Ddebuginfod.cxx21 /* In case we have a bad fts we include this before config.h because it
24 Also, include sys/types.h before fts. On some systems fts.h is not self
28 #include <fts.h>
61 /* If fts.h is included before config.h, its indirect inclusions may not
70 #include <fts.h>
3135 // throw libc_exception(errno, "fts/file realpath " + srcpath); in scan_source_file()
3626 // NB: fedora 31 glibc/fts(3) crashes inside fts_read() on empty in scan_source_paths()
3631 // Turn the source_paths into an fts(3)-compatible char**. Since in scan_source_paths()
3639 FTS *fts in scan_source_paths() local
[all...]
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
H A Dlibcpuset.c32 #include <fts.h>
3199 FTS *fts = NULL; in cpuset_fts_open() local
3214 fts = fts_open(path_argv, fts_flags, NULL); in cpuset_fts_open()
3215 if (fts == NULL) in cpuset_fts_open()
3224 while ((ftsent = fts_read(fts)) != NULL) { in cpuset_fts_open()
3269 (void)fts_close(fts); in cpuset_fts_open()
3276 if (fts) in cpuset_fts_open()
3277 (void)fts_close(fts); in cpuset_fts_open()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateLineWidthTests.cpp461 VkPhysicalDeviceFeatures fts {}; in checkSupport()
475 vki.getPhysicalDeviceFeatures(dev, &fts); in checkSupport()
/third_party/python/Lib/test/
H A Ddatetimetester.py2478 for fts in [self.theclass.fromtimestamp,
2480 zero = fts(0)
2483 one = fts(1e-6)
2485 minus_one = fts(-1e-6)
2493 t = fts(-1e-8)
2495 t = fts(-9e-7)
2497 t = fts(-1e-7)
2499 t = fts(-1/2**7)
2503 t = fts(1e-7)
2505 t = fts(
[all...]
/third_party/libwebsockets/include/
H A Dlibwebsockets.h639 #include <libwebsockets/lws-fts.h>
/third_party/libabigail/src/
H A Dabg-tools-utils.cc8 // In case we have a bad fts we include this before config.h because
11 // before fts. On some systems fts.h is not self contained.
14 #include <fts.h>
20 // In case we don't have a bad fts then we need to include fts.h after
24 #include <fts.h>
/third_party/libabigail/tools/
H A Dabipkgdiff.cc45 // In case we have a bad fts we include this before config.h because
48 // before fts. On some systems fts.h is not self contained.
51 #include <fts.h>
61 // If fts.h is included before config.h, its indirect inclusions may
71 #include <fts.h>

Completed in 35 milliseconds