Home
last modified time | relevance | path

Searched defs:res (Results 1 – 25 of 3636) sorted by relevance

12345678910>>...146

/third_party/rust/crates/nix/src/
Dunistd.rs294 let res = libc::fork(); localVariable
333 let res = unsafe { libc::setpgid(pid.into(), pgid.into()) }; localVariable
338 let res = unsafe { libc::getpgid(pid.unwrap_or(Pid(0)).into()) }; localVariable
357 let res = unsafe { libc::getsid(pid.unwrap_or(Pid(0)).into()) }; localVariable
371 let res = unsafe { libc::tcgetpgrp(fd) }; localVariable
381 let res = unsafe { libc::tcsetpgrp(fd, pgrp.into()) }; localVariable
429 let res = unsafe { libc::dup(oldfd) }; localVariable
442 let res = unsafe { libc::dup2(oldfd, newfd) }; localVariable
481 let res = path.with_nix_path(|cstr| { localVariable
497 let res = unsafe { libc::fchdir(dirfd) }; localVariable
[all …]
Dfcntl.rs226 let res = old_path.with_nix_path(|old_cstr| { localVariable
264 let res = old_path.with_nix_path(|old_cstr| { localVariable
312 let res = readlink_maybe_at(dirfd, path, &mut v)?; localVariable
345 let res = readlink_maybe_at(dirfd, path, &mut v)?; localVariable
458 let res = unsafe { localVariable
510 let res = unsafe { localVariable
689 let res = unsafe { libc::fallocate(fd, mode.bits(), offset, len) }; localVariable
759 let res = unsafe { libc::fspacectl( localVariable
805 let res = unsafe { libc::fspacectl( localVariable
854 let res = unsafe { libc::posix_fadvise(fd, offset, len, advice as libc::c_int) }; localVariable
[all …]
/third_party/nghttp2/src/
Dhttp2_test.cc333 auto res = http2::parse_link_header(StringRef::from_lit("<url>")); in test_http2_parse_link_header() local
338 auto res = in test_http2_parse_link_header() local
345 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
352 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
360 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
368 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
375 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
382 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
389 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
397 auto res = http2::parse_link_header( in test_http2_parse_link_header() local
[all …]
/third_party/flutter/skia/infra/bots/recipe_modules/flavor/resources/
Dwin_run_and_check_log.ps118 $res = $LastExitCode variable
24 if ($res -ne 0) { variable
25 $res = 1 variable
40 if ($res -eq 0) { variable
41 $res = 2 variable
46 if ($res -ne 0) { variable
48 exit $res variable
/third_party/skia/infra/bots/recipe_modules/flavor/resources/
Dwin_run_and_check_log.ps118 $res = $LastExitCode variable
24 if ($res -ne 0) { variable
25 $res = 1 variable
40 if ($res -eq 0) { variable
41 $res = 2 variable
46 if ($res -ne 0) { variable
48 exit $res variable
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkTypeUtil.inl9 VkOffset2D res; local
17 VkOffset3D res; local
26 VkExtent2D res; local
34 VkExtent3D res; local
43 VkViewport res; local
55 VkComponentMapping res; local
65 VkAllocationCallbacks res; local
77 VkMemoryRequirements res; local
86 VkDescriptorBufferInfo res; local
95 VkDescriptorImageInfo res; local
[all …]
/third_party/rust/crates/clap/tests/builder/
Drequire.rs202 let res = Command::new("arg_require_group") in arg_require_group_2() localVariable
221 let res = Command::new("arg_require_group") in arg_require_group_3() localVariable
265 let res = Command::new("unlesstest") in required_unless_present() localVariable
283 let res = Command::new("unlesstest") in required_unless_present_err() localVariable
299 let res = Command::new("unlesstest") in required_unless_present_with_optional_value() localVariable
318 let res = Command::new("unlessall") in required_unless_present_all() localVariable
338 let res = Command::new("unlessall") in required_unless_all_err() localVariable
357 let res = Command::new("unlessone") in required_unless_present_any() localVariable
378 let res = Command::new("unlessone") in required_unless_any_2() localVariable
398 let res = Command::new("unlessone") in required_unless_any_works_with_short() localVariable
[all …]
Ddouble_require.rs40 let res = cmd().try_get_matches_from(vec!["", "-a"]); in valid_cases() localVariable
42 let res = cmd().clone().try_get_matches_from(vec!["", "-b", "-c"]); in valid_cases() localVariable
44 let res = cmd().try_get_matches_from(vec!["", "-c", "-b"]); in valid_cases() localVariable
50 let res = cmd().try_get_matches_from(vec!["prog", "--help"]); in help_text() localVariable
70 let res = cmd().try_get_matches_from(vec!["", "-b"]); in no_duplicate_error() localVariable
85 let res = cmd().try_get_matches_from(vec!["", "-c"]); in no_duplicate_error() localVariable
Dversion.rs27 let res = common().try_get_matches_from("foo -V".split(' ')); in version_short_flag_no_version() localVariable
36 let res = common().try_get_matches_from("foo --version".split(' ')); in version_long_flag_no_version() localVariable
45 let res = with_version().try_get_matches_from("foo -V".split(' ')); in version_short_flag_with_version() localVariable
55 let res = with_version().try_get_matches_from("foo --version".split(' ')); in version_long_flag_with_version() localVariable
65 let res = with_long_version().try_get_matches_from("foo -V".split(' ')); in version_short_flag_with_long_version() localVariable
75 let res = with_long_version().try_get_matches_from("foo --version".split(' ')); in version_long_flag_with_long_version() localVariable
85 let res = with_both().try_get_matches_from("foo -V".split(' ')); in version_short_flag_with_both() localVariable
95 let res = with_both().try_get_matches_from("foo --version".split(' ')); in version_long_flag_with_both() localVariable
246 let res = with_subcommand().try_get_matches_from("foo bar --version".split(' ')); in no_propagation_by_default_long() localVariable
255 let res = with_subcommand().try_get_matches_from("foo bar -V".split(' ')); in no_propagation_by_default_short() localVariable
[all …]
Dcargo.rs31 let res = Command::new("prog") in crate_version() localVariable
47 let res = Command::new("prog") in crate_description() localVariable
61 let res = Command::new("prog") in crate_authors() localVariable
75 let res = Command::new("prog") in crate_authors_with_sep() localVariable
89 let res = Command::new(crate_name!()) in crate_name() localVariable
/third_party/libfuse/example/
Dpassthrough.c80 int res; in xmp_getattr() local
91 int res; in xmp_access() local
102 int res; in xmp_readlink() local
143 int res; in xmp_mknod() local
154 int res; in xmp_mkdir() local
165 int res; in xmp_unlink() local
176 int res; in xmp_rmdir() local
187 int res; in xmp_symlink() local
198 int res; in xmp_rename() local
212 int res; in xmp_link() local
[all …]
Dpassthrough_fh.c74 int res; in xmp_getattr() local
90 int res; in xmp_access() local
101 int res; in xmp_readlink() local
119 int res; in xmp_opendir() local
172 int res; in xmp_readdir() local
214 int res; in xmp_mknod() local
228 int res; in xmp_mkdir() local
239 int res; in xmp_unlink() local
250 int res; in xmp_rmdir() local
261 int res; in xmp_symlink() local
[all …]
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/test/
Dresolver.js9 resolve('./foo', { basedir: dir }, function (err, res, pkg) { argument
15 resolve('./foo.js', { basedir: dir }, function (err, res, pkg) { argument
21 resolve('./foo', { basedir: dir, 'package': { main: 'resolver' } }, function (err, res, pkg) { argument
27 … resolve('./foo.js', { basedir: dir, 'package': { main: 'resolver' } }, function (err, res, pkg) { argument
33 resolve('./foo', { basedir: dir, filename: path.join(dir, 'baz.js') }, function (err, res) { argument
53 resolve('foo', { basedir: dir + '/bar' }, function (err, res, pkg) { argument
59 resolve('foo', { basedir: dir + '/bar' }, function (err, res, pkg) { argument
65 resolve('foo', { basedir: dir + '/bar', 'package': { main: 'bar' } }, function (err, res, pkg) { argument
76 resolve('./baz', { basedir: dir }, function (err, res, pkg) { argument
82 resolve('./baz', { basedir: dir, 'package': { main: 'resolver' } }, function (err, res, pkg) { argument
[all …]
Dmock.js23 resolve('./baz', opts('/foo/bar'), function (err, res, pkg) { argument
29 resolve('./baz.js', opts('/foo/bar'), function (err, res, pkg) { argument
35 resolve('baz', opts('/foo/bar'), function (err, res) { argument
40 resolve('../baz', opts('/foo/bar'), function (err, res) { argument
65 resolve('./baz', opts('/foo/bar'), function (err, res, pkg) { argument
71 resolve('./baz.js', opts('/foo/bar'), function (err, res, pkg) { argument
77 resolve('baz', opts('/foo/bar'), function (err, res) { argument
82 resolve('../baz', opts('/foo/bar'), function (err, res) { argument
109 resolve('bar', opts('/foo'), function (err, res, pkg) { argument
138 resolve('bar', opts('/foo'), function (err, res, pkg) { argument
/third_party/python/Python/
DPython-ast.c795 int res = -1; in ast_type_init() local
5359 int res; in obj2ast_mod() local
5396 int res; in obj2ast_mod() local
5445 int res; in obj2ast_mod() local
5494 int res; in obj2ast_mod() local
5524 int res; in obj2ast_mod() local
5561 int res; in obj2ast_mod() local
5606 int res; in obj2ast_stmt() local
5623 int res; in obj2ast_stmt() local
5640 int res; in obj2ast_stmt() local
[all …]
/third_party/python/PC/
Dmsvcrtmodule.c357 int res; in msvcrt_ungetch_impl() local
360 res = _ungetch(char_value); in msvcrt_ungetch_impl() local
381 int res; in msvcrt_ungetwch_impl() local
384 res = _ungetwch(unicode_char); in msvcrt_ungetwch_impl() local
409 HANDLE res; in msvcrt_CrtSetReportFile_impl() local
412 res = _CrtSetReportFile(type, file); in msvcrt_CrtSetReportFile_impl() local
434 int res; in msvcrt_CrtSetReportMode_impl() local
437 res = _CrtSetReportMode(type, mode); in msvcrt_CrtSetReportMode_impl() local
459 long res; in msvcrt_set_error_mode_impl() local
462 res = _set_error_mode(mode); in msvcrt_set_error_mode_impl() local
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspextension.c92 gboolean res = TRUE; in gst_rtsp_extension_detect_server() local
105 GstRTSPResult res = GST_RTSP_OK; in gst_rtsp_extension_before_send() local
119 GstRTSPResult res = GST_RTSP_OK; in gst_rtsp_extension_after_send() local
133 GstRTSPResult res = GST_RTSP_OK; in gst_rtsp_extension_parse_sdp() local
146 GstRTSPResult res = GST_RTSP_OK; in gst_rtsp_extension_setup_media() local
159 gboolean res = TRUE; in gst_rtsp_extension_configure_stream() local
173 GstRTSPResult res = GST_RTSP_OK; in gst_rtsp_extension_get_transports() local
186 GstRTSPResult res = GST_RTSP_OK; in gst_rtsp_extension_stream_select() local
200 GstRTSPResult res = GST_RTSP_ENOTIMPL; in gst_rtsp_extension_receive_request() local
213 GstRTSPResult res = GST_RTSP_OK; in gst_rtsp_extension_send() local
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Daudiopanorama.c324 gint16 res[4]; in GST_START_TEST() local
342 gint16 res[4]; in GST_START_TEST() local
360 gint16 res[4]; in GST_START_TEST() local
377 gint16 res[4]; in GST_START_TEST() local
395 gint16 res[4]; in GST_START_TEST() local
413 gint16 res[4]; in GST_START_TEST() local
431 gfloat res[4]; in GST_START_TEST() local
451 gfloat res[4]; in GST_START_TEST() local
471 gfloat res[4]; in GST_START_TEST() local
490 gfloat res[4]; in GST_START_TEST() local
[all …]
/third_party/libxml2/python/tests/
Dreader2.py176 res="" variable
186 res = res + "%s,%s\n" % (reader.NodeType(),reader.Name()) variable
220 res="" variable
236 res = res + "%s %s\n" % (reader.NodeType(),reader.Name()) variable
280 res="" variable
290 res = res + "%s %s %d\n" % (reader.NodeType(),reader.Name(),reader.Depth()) variable
325 res="" variable
332 res = res + "%s %s %d\n" % (reader.NodeType(),reader.Name(),reader.Depth()) variable
/third_party/musl/Benchmark/musl/
Dlibc_network.cpp26 struct addrinfo *res; in Bm_function_Getaddrinfo_external_network() local
41 struct addrinfo *res; in Bm_function_Getaddrinfo_intranet1() local
59 struct addrinfo *res; in Bm_function_Getaddrinfo_intranet2() local
77 struct addrinfo *res; in Bm_function_Getaddrinfo_intranet3() local
95 struct addrinfo *res; in Bm_function_Getaddrinfo_intranet4() local
113 struct addrinfo *res; in Bm_function_Getaddrinfo_intranet5() local
131 struct addrinfo *res; in Bm_function_Getaddrinfo_intranet6() local
148 struct addrinfo *res; in Bm_function_Getaddrinfo_intranet7() local
/third_party/rust/crates/nix/src/sys/
Dstat.rs179 let res = path.with_nix_path(|cstr| unsafe { in mknod() localVariable
201 let res = path.with_nix_path(|cstr| unsafe { in mknodat() localVariable
241 let res = path.with_nix_path(|cstr| unsafe { in stat() localVariable
252 let res = path.with_nix_path(|cstr| unsafe { in lstat() localVariable
263 let res = unsafe { libc::fstat(fd, dst.as_mut_ptr()) }; in fstat() localVariable
278 let res = pathname.with_nix_path(|cstr| unsafe { in fstatat() localVariable
298 let res = unsafe { libc::fchmod(fd, mode.bits() as mode_t) }; in fchmod() localVariable
338 let res = path.with_nix_path(|cstr| unsafe { in fchmodat() localVariable
366 let res = path.with_nix_path(|cstr| unsafe { in utimes() localVariable
398 let res = path.with_nix_path(|cstr| unsafe { in lutimes() localVariable
[all …]
/third_party/libfuse/test/
Dtest_syscalls.c141 int res = stat(path, &stbuf); in check_size() local
167 int res = lstat(path, &stbuf); in check_type() local
188 int res = lstat(path, &stbuf); in check_mode() local
207 int res = lstat(path, &stbuf); in check_times() local
264 int res = lstat(path, &stbuf); in check_nlink() local
275 int res = fstat(fd, &stbuf); in fcheck_stat() local
300 int res = lstat(path, &stbuf); in check_nonexist() local
325 int res; in check_data() local
368 int res; in fcheck_data() local
396 int res; in check_dir_contents() local
[all …]
/third_party/rust/crates/nix/test/sys/
Dtest_ioctl.rs210 let res = unsafe { tiocnxcl(file.as_raw_fd()) }; in test_ioctl_none_bad() localVariable
219 let res = unsafe { tcgets(file.as_raw_fd(), &mut termios) }; in test_ioctl_read_bad() localVariable
227 let res = unsafe { tcsbrk(file.as_raw_fd(), 0) }; in test_ioctl_write_int_bad() localVariable
236 let res = unsafe { tcsets(file.as_raw_fd(), &termios) }; in test_ioctl_write_ptr_bad() localVariable
247 let res = unsafe { log_status(file.as_raw_fd()) }; in test_ioctl_none() localVariable
266 let res = unsafe { s_audio(file.as_raw_fd(), &data) }; in test_ioctl_write_ptr() localVariable
277 let res = unsafe { hcidevup(file.as_raw_fd(), 0) }; in test_ioctl_write_int() localVariable
287 let res = unsafe { g_audio(file.as_raw_fd(), &mut data) }; in test_ioctl_read() localVariable
297 let res = unsafe { enum_audio(file.as_raw_fd(), &mut data) }; in test_ioctl_readwrite() localVariable
328 let res = unsafe { spi_ioc_message(file.as_raw_fd(), &data[..]) }; in test_ioctl_write_buf() localVariable
[all …]
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/
Dobj_res.c53 struct obj_res *res; in objres_alloc() local
66 void objres_free(void *res) in objres_free()
75 void objres_add(struct usb_obj *obj, void *res) in objres_add()
85 static struct obj_res *objres_find(struct usb_obj *obj, void *res) in objres_find()
101 int objres_remove(struct usb_obj *obj, void *res) in objres_remove()
119 struct obj_res *res, *tmp; in objres_release_all() local
133 void *res; in usbm_malloc() local
/third_party/icu/icu4c/source/common/
Duresdata.h68 #define RES_GET_TYPE(res) ((int32_t)((res)>>28UL)) argument
69 #define RES_GET_OFFSET(res) ((res)&0x0fffffff) argument
70 #define RES_GET_POINTER(pRoot, res) ((pRoot)+RES_GET_OFFSET(res)) argument
76 # define RES_GET_INT_NO_TRACE(res) (((int32_t)((res)<<4L))>>4L) argument
78 # define RES_GET_INT_NO_TRACE(res) (int32_t)(((res)&0x08000000) ? (res)|0xf0000000 : (res)&0x07ff… argument
81 #define RES_GET_UINT_NO_TRACE(res) ((res)&0x0fffffff) argument
484 const ResourceData *pResData, Resource res, int32_t *pLength) { in res_getString()
490 const ResourceData *pResData, Resource res, int32_t *pLength) { in res_getBinary()
496 const ResourceData *pResData, Resource res, int32_t *pLength) { in res_getIntVector()
501 inline int32_t res_getInt(const ResourceTracer& traceInfo, Resource res) { in res_getInt()
[all …]

12345678910>>...146