Lines Matching defs:info
38 struct uv__fd_info_s info = { 0 };
39 ASSERT(!uv__fd_hash_get(fd, &info));
40 ASSERT(!uv__fd_hash_remove(fd, &info));
44 struct uv__fd_info_s info = { 0 };
45 ASSERT(uv__fd_hash_get(fd, &info));
46 ASSERT_EQ(info.flags, fd + FD_DIFF);
50 struct uv__fd_info_s info = { 0 };
52 info.flags = fd + FD_DIFF;
53 uv__fd_hash_add(fd, &info);
58 struct uv__fd_info_s info = { 0 };
60 uv__fd_hash_remove(fd, &info);
61 ASSERT_EQ(info.flags, fd + FD_DIFF);
102 struct uv__fd_info_s info = { 0 };
103 info.flags = FD_DIFF + FD_DIFF;
104 uv__fd_hash_add(0, &info);
107 struct uv__fd_info_s info = { 0 };
108 ASSERT(uv__fd_hash_get(0, &info));
109 ASSERT_EQ(info.flags, FD_DIFF + FD_DIFF);
113 struct uv__fd_info_s info = { 0 };
114 info.flags = FD_DIFF;
115 uv__fd_hash_add(0, &info);