HomeSort by relevance Sort by last modified time
    Searched defs:fl (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libcxx/test/std/containers/sequences/forwardlist/
allocator_mismatch.fail.cpp 17 std::forward_list<int, std::allocator<long> > fl; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/
allocator_mismatch.fail.cpp 17 std::forward_list<int, std::allocator<long> > fl; local
  /bionic/libc/bionic/
lockf.cpp 37 struct flock64 fl; local
38 memset(&fl, 0, sizeof(fl));
39 fl.l_whence = SEEK_CUR;
40 fl.l_start = 0;
41 fl.l_len = length;
44 fl.l_type = F_UNLCK;
46 return fcntl(fd, F_SETLK64, &fl);
50 fl.l_type = F_WRLCK;
51 return fcntl(fd, F_SETLKW64, &fl);
    [all...]
  /external/ppp/pppd/plugins/radius/
lock.c 18 struct flock fl; local
21 memset((void *)&fl, 0, sizeof(fl));
23 fl.l_type = F_WRLCK;
24 fl.l_whence = fl.l_start = 0;
25 fl.l_len = 0; /* 0 means "to end of file" */
27 res = fcntl(fd, F_SETLK, &fl);
37 struct flock fl; local
39 memset((void *)&fl, 0, sizeof(fl))
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
ftruncate.c 52 struct flock fl; local
73 fl.l_whence = 0;
74 fl.l_len = 0;
75 fl.l_start = length;
76 fl.l_type = F_WRLCK; /* write lock on file space */
80 indicated by fl.l_start. Will minor miracles never cease? */
82 if (fcntl (fd, F_FREESP, &fl) < 0)
  /external/clang/test/FixIt/
dereference-addressof.c 13 float fl = 0; local
20 fl = bPtr + a; // expected-error{{assigning to 'float' from incompatible type 'float *'; dereference with *}}
  /external/libffi/testsuite/libffi.call/
return_fl.c 10 static float return_fl(float fl)
12 return 2 * fl;
19 float fl, rfl; local
22 values[0] = &fl;
28 for (fl = -127.0; fl < 127; fl++)
31 printf ("%f vs %f\n", rfl, return_fl(fl));
32 CHECK(rfl == 2 * fl);
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
return_fl.c 10 static float return_fl(float fl)
12 return 2 * fl;
19 float fl, rfl; local
22 values[0] = &fl;
28 for (fl = -127.0; fl < 127; fl++)
31 printf ("%f vs %f\n", rfl, return_fl(fl));
32 CHECK(rfl == 2 * fl);
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
return_fl.c 10 static float return_fl(float fl)
12 return 2 * fl;
19 float fl, rfl; local
22 values[0] = &fl;
28 for (fl = -127.0; fl < 127; fl++)
31 printf ("%f vs %f\n", rfl, return_fl(fl));
32 CHECK(rfl == 2 * fl);
  /external/valgrind/none/tests/
mmap_fcntl_bug.c 18 struct flock fl; local
38 fl.l_type = F_WRLCK;
39 fl.l_whence = SEEK_SET;
40 fl.l_start = 0;
41 fl.l_len = 1;
44 if (fcntl(fd, F_SETLK, &fl) != 0)
56 if (fcntl(fd, F_SETLK, &fl) == 0)
  /external/ltp/testcases/kernel/syscalls/eventfd2/
eventfd2_02.c 82 int fd, fl; local
97 fl = fcntl(fd, F_GETFL);
98 if (fl == -1) {
101 if (fl & O_NONBLOCK) {
110 fl = fcntl(fd, F_GETFL);
111 if (fl == -1) {
114 if ((fl & O_NONBLOCK) == 0) {
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl22.c 44 struct flock fl; variable in typeref:struct:flock
66 TEST(fcntl(file, F_SETLK, &fl));
113 fl.l_type = F_WRLCK;
114 fl.l_whence = 0;
115 fl.l_start = 0;
116 fl.l_len = 0;
118 if (fcntl(file, F_SETLK, &fl) < 0)
  /external/ltp/testcases/kernel/syscalls/inotify_init/
inotify_init1_02.c 121 int fd, fl; local
141 fl = fcntl(fd, F_GETFL);
142 if (fl == -1) {
146 if (fl & O_NONBLOCK) {
158 fl = fcntl(fd, F_GETFL);
159 if (fl == -1) {
163 if ((fl & O_NONBLOCK) == 0) {
  /external/ltp/testcases/kernel/syscalls/pipe2/
pipe2_02.c 122 int fds[2], fl, i; local
140 fl = fcntl(fds[i], F_GETFL);
141 if (fl == -1) {
145 if (fl & O_NONBLOCK) {
158 fl = fcntl(fds[i], F_GETFL);
159 if (fl == -1) {
163 if ((fl & O_NONBLOCK) == 0) {
  /external/ltp/testcases/kernel/syscalls/timerfd/
timerfd03.c 123 int fd, fl; local
143 fl = fcntl(fd, F_GETFL);
144 if (fl == -1) {
147 if (fl & O_NONBLOCK) {
161 fl = fcntl(fd, F_GETFL);
162 if (fl == -1) {
165 if ((fl & O_NONBLOCK) == 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
11-1.c 30 struct flock fl = { local
37 if (fcntl(fd, F_GETLK, &fl) == -1) {
43 if (fl.l_type == F_UNLCK) {
48 if (fcntl(fd, F_SETLK, &fl) == -1) {
68 struct flock fl = { local
82 if (fcntl(fd, F_SETLK, &fl) == -1) {
  /external/strace/tests/
fcntl.c 43 struct_kernel_flock64 fl = { local
48 long rc = invoke_test_syscall(cmd, &fl);
50 TEST_SYSCALL_STR, name, &fl, sprintrc(rc));
fcntl64.c 43 struct_kernel_flock64 fl = { local
48 long rc = invoke_test_syscall(cmd, &fl);
51 (intmax_t) fl.l_start, (intmax_t) fl.l_len, sprintrc(rc));
64 struct_kernel_flock64 fl = { local
68 long rc = invoke_test_syscall(F_SETLK64, &fl);
76 invoke_test_syscall(F_GETLK64, &fl);
81 invoke_test_syscall(F_SETLK64, &fl);
  /external/strace/tests-m32/
fcntl.c 43 struct_kernel_flock64 fl = { local
48 long rc = invoke_test_syscall(cmd, &fl);
50 TEST_SYSCALL_STR, name, &fl, sprintrc(rc));
fcntl64.c 43 struct_kernel_flock64 fl = { local
48 long rc = invoke_test_syscall(cmd, &fl);
51 (intmax_t) fl.l_start, (intmax_t) fl.l_len, sprintrc(rc));
64 struct_kernel_flock64 fl = { local
68 long rc = invoke_test_syscall(F_SETLK64, &fl);
76 invoke_test_syscall(F_GETLK64, &fl);
81 invoke_test_syscall(F_SETLK64, &fl);
  /external/strace/tests-mx32/
fcntl.c 43 struct_kernel_flock64 fl = { local
48 long rc = invoke_test_syscall(cmd, &fl);
50 TEST_SYSCALL_STR, name, &fl, sprintrc(rc));
fcntl64.c 43 struct_kernel_flock64 fl = { local
48 long rc = invoke_test_syscall(cmd, &fl);
51 (intmax_t) fl.l_start, (intmax_t) fl.l_len, sprintrc(rc));
64 struct_kernel_flock64 fl = { local
68 long rc = invoke_test_syscall(F_SETLK64, &fl);
76 invoke_test_syscall(F_GETLK64, &fl);
81 invoke_test_syscall(F_SETLK64, &fl);
  /cts/tests/tests/permission/src/android/permission/cts/
NoSdCardWritePermissionTest.java 38 String fl = Environment.getExternalStorageDirectory().toString() + local
40 FileOutputStream strm = new FileOutputStream(fl);
44 fail("Was able to create and write to " + fl);
  /device/google/contexthub/util/stm32_flash/
uart.c 86 int fl; local
100 fl = fcntl(uart_handle->fd, F_GETFL, 0);
101 if (fl < 0)
102 return fl;
103 fl = fcntl(uart_handle->fd, F_SETFL, fl & ~O_NDELAY);
104 if (fl < 0)
105 return fl;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cmptree.py 90 fl()
138 fl()
174 fl()
204 def fl(): function

Completed in 1636 milliseconds

1 2 3 4 5 6 7 8 9