Home
last modified time | relevance | path

Searched refs:args (Results 126 - 150 of 5903) sorted by relevance

12345678910>>...237

/third_party/libdrm/amdgpu/
H A Damdgpu_bo.c74 union drm_amdgpu_gem_create args; in amdgpu_bo_alloc() local
77 memset(&args, 0, sizeof(args)); in amdgpu_bo_alloc()
78 args.in.bo_size = alloc_buffer->alloc_size; in amdgpu_bo_alloc()
79 args.in.alignment = alloc_buffer->phys_alignment; in amdgpu_bo_alloc()
82 args.in.domains = alloc_buffer->preferred_heap; in amdgpu_bo_alloc()
83 args.in.domain_flags = alloc_buffer->flags; in amdgpu_bo_alloc()
87 &args, sizeof(args)); in amdgpu_bo_alloc()
92 r = amdgpu_bo_create(dev, alloc_buffer->alloc_size, args in amdgpu_bo_alloc()
106 struct drm_amdgpu_gem_metadata args = {}; amdgpu_bo_set_metadata() local
427 union drm_amdgpu_gem_mmap args; amdgpu_bo_cpu_map() local
511 union drm_amdgpu_gem_wait_idle args; amdgpu_bo_wait_for_idle() local
578 struct drm_amdgpu_gem_userptr args; amdgpu_create_bo_from_user_mem() local
605 union drm_amdgpu_bo_list args; amdgpu_bo_list_create_raw() local
624 union drm_amdgpu_bo_list args; amdgpu_bo_list_destroy_raw() local
641 union drm_amdgpu_bo_list args; amdgpu_bo_list_create() local
691 union drm_amdgpu_bo_list args; amdgpu_bo_list_destroy() local
713 union drm_amdgpu_bo_list args; amdgpu_bo_list_update() local
[all...]
/third_party/libbpf/src/
H A Dusdt.bpf.h58 struct __bpf_usdt_arg_spec args[BPF_USDT_MAX_ARG_CNT]; member
139 arg_spec = &spec->args[arg_num]; in bpf_usdt_arg()
218 #define ___bpf_usdt_args2(x, args...) ___bpf_usdt_args1(args), ({ long _x; bpf_usdt_arg(ctx, 1, &_x); (void *)_x; })
219 #define ___bpf_usdt_args3(x, args...) ___bpf_usdt_args2(args), ({ long _x; bpf_usdt_arg(ctx, 2, &_x); (void *)_x; })
220 #define ___bpf_usdt_args4(x, args...) ___bpf_usdt_args3(args), ({ long _x; bpf_usdt_arg(ctx, 3, &_x); (void *)_x; })
221 #define ___bpf_usdt_args5(x, args...) ___bpf_usdt_args4(args), ({ lon
[all...]
H A Dbpf_helpers.h207 #define ___bpf_fill2(arr, p, x, args...) arr[p] = x; ___bpf_fill1(arr, p + 1, args)
208 #define ___bpf_fill3(arr, p, x, args...) arr[p] = x; ___bpf_fill2(arr, p + 1, args)
209 #define ___bpf_fill4(arr, p, x, args...) arr[p] = x; ___bpf_fill3(arr, p + 1, args)
210 #define ___bpf_fill5(arr, p, x, args...) arr[p] = x; ___bpf_fill4(arr, p + 1, args)
211 #define ___bpf_fill6(arr, p, x, args...) arr[p] = x; ___bpf_fill5(arr, p + 1, args)
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dmain.py112 args = parser.parse_args()
114 arg_dict = vars(args)
116 if args.Wall or (arg in arg_dict and arg_dict[arg]):
123 if args.verbose:
126 if args.debug:
131 if args.dump_entities:
136 if args.file:
137 files = (str(Path(f).resolve()) for f in args.file)
144 if args.html:
146 printer = HTMLPrinter(args
[all...]
/third_party/skia/src/gpu/v1/
H A DPathRenderer.cpp47 bool PathRenderer::drawPath(const DrawPathArgs& args) { in drawPath() argument
49 args.validate(); in drawPath()
51 canArgs.fCaps = args.fContext->priv().caps(); in drawPath()
52 canArgs.fProxy = args.fSurfaceDrawContext->asRenderTargetProxy(); in drawPath()
53 canArgs.fClipConservativeBounds = args.fClipConservativeBounds; in drawPath()
54 canArgs.fViewMatrix = args.fViewMatrix; in drawPath()
55 canArgs.fShape = args.fShape; in drawPath()
56 canArgs.fPaint = &args.fPaint; in drawPath()
57 canArgs.fSurfaceProps = &args.fSurfaceDrawContext->surfaceProps(); in drawPath()
58 canArgs.fAAType = args in drawPath()
85 onStencilPath(const StencilPathArgs& args) onStencilPath() argument
[all...]
/third_party/skia/third_party/externals/libwebp/examples/
H A Dexample_util.c67 CommandLineArguments* const args) { in ResetCommandLineArguments()
68 assert(args != NULL); in ResetCommandLineArguments()
69 args->argc_ = argc; in ResetCommandLineArguments()
70 args->argv_ = argv; in ResetCommandLineArguments()
71 args->own_argv_ = 0; in ResetCommandLineArguments()
72 WebPDataInit(&args->argv_data_); in ResetCommandLineArguments()
75 void ExUtilDeleteCommandLineArguments(CommandLineArguments* const args) { in ExUtilDeleteCommandLineArguments() argument
76 if (args != NULL) { in ExUtilDeleteCommandLineArguments()
77 if (args->own_argv_) { in ExUtilDeleteCommandLineArguments()
78 WebPFree((void*)args in ExUtilDeleteCommandLineArguments()
66 ResetCommandLineArguments(int argc, const char* argv[], CommandLineArguments* const args) ResetCommandLineArguments() argument
86 ExUtilInitCommandLineArguments(int argc, const char* argv[], CommandLineArguments* const args) ExUtilInitCommandLineArguments() argument
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/tools/
H A Dgenerate_font_list_cc.py83 args = parser.parse_args() variable
86 os.stat(args.destination)
88 os.mkdir(args.destination)
90 args.destination = FixPath(args.destination)
91 args.source = FixPath(args.source)
92 args.font_dir = FixPath(args.font_dir)
93 if args
[all...]
/third_party/ntfs-3g/libfuse-lite/
H A Dfuse_opt.c29 void fuse_opt_free_args(struct fuse_args *args) in fuse_opt_free_args() argument
31 if (args) { in fuse_opt_free_args()
32 if (args->argv && args->allocated) { in fuse_opt_free_args()
34 for (i = 0; i < args->argc; i++) in fuse_opt_free_args()
35 free(args->argv[i]); in fuse_opt_free_args()
36 free(args->argv); in fuse_opt_free_args()
38 args->argc = 0; in fuse_opt_free_args()
39 args->argv = NULL; in fuse_opt_free_args()
40 args in fuse_opt_free_args()
50 fuse_opt_add_arg(struct fuse_args *args, const char *arg) fuse_opt_add_arg() argument
69 fuse_opt_insert_arg(struct fuse_args *args, int pos, const char *arg) fuse_opt_insert_arg() argument
357 fuse_opt_parse(struct fuse_args *args, void *data, const struct fuse_opt opts[], fuse_opt_proc_t proc) fuse_opt_parse() argument
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/ump/common/
H A Dump_kernel_common.h23 #define UMP_DEBUG_PRINT(args) _mali_osk_dbgmsg args
24 #define UMP_DEBUG_CODE(args) args
25 #define DBG_MSG(level,args) do { /* args should be in brackets */ \
28 UMP_DEBUG_PRINT(args):0; \
31 #define DBG_MSG_IF(level,condition,args) /* args should be in brackets */ \
34 UMP_DEBUG_PRINT(args); \
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/ump/common/
H A Dump_kernel_common.h23 #define UMP_DEBUG_PRINT(args) _mali_osk_dbgmsg args
24 #define UMP_DEBUG_CODE(args) args
25 #define DBG_MSG(level, args) \
26 do { /* args should be in brackets */ \
27 ((level) <= ump_debug_level) ? UMP_DEBUG_PRINT(("UMP<" #level ">: ")), UMP_DEBUG_PRINT(args) : 0; \
30 #define DBG_MSG_IF(level, condition, args) /* args should be in brackets */ \
33 UMP_DEBUG_PRINT(args); \
[all...]
/third_party/node/benchmark/napi/function_args/
H A Dindex.js30 let args = [];
33 args.push('The quick brown fox jumps over the lazy dog');
35 args.push(Buffer.alloc(32768, '42').toString());
37 args.push(Math.floor(314158964 * Math.random()));
39 args.push({
50 args.push(arr);
56 args.push(arr);
58 args.push(10);
60 args = [...args,
[all...]
/third_party/libdrm/tegra/
H A Dsyncpt.c38 struct drm_tegra_syncpoint_allocate args; in drm_tegra_syncpoint_new() local
46 memset(&args, 0, sizeof(args)); in drm_tegra_syncpoint_new()
48 err = ioctl(drm->fd, DRM_IOCTL_TEGRA_SYNCPOINT_ALLOCATE, &args); in drm_tegra_syncpoint_new()
55 syncpt->id = args.id; in drm_tegra_syncpoint_new()
65 struct drm_tegra_syncpoint_free args; in drm_tegra_syncpoint_free() local
72 memset(&args, 0, sizeof(args)); in drm_tegra_syncpoint_free()
73 args.id = syncpt->id; in drm_tegra_syncpoint_free()
75 err = ioctl(drm->fd, DRM_IOCTL_TEGRA_SYNCPOINT_FREE, &args); in drm_tegra_syncpoint_free()
87 struct drm_tegra_syncpoint_wait args; drm_tegra_fence_wait() local
[all...]
/third_party/selinux/libsepol/cil/test/unit/
H A Dtest_cil_resolve_ast.c55 struct cil_args_resolve *args = cil_malloc(sizeof(*args)); in gen_resolve_args() local
56 args->db = db; in gen_resolve_args()
57 args->pass = pass; in gen_resolve_args()
58 args->changed = changed; in gen_resolve_args()
59 args->callstack = calls; in gen_resolve_args()
60 args->optstack = opts; in gen_resolve_args()
61 args->macro = macro; in gen_resolve_args()
63 return args; in gen_resolve_args()
78 struct cil_args_resolve *args in test_cil_resolve_name() local
102 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_name_invalid_type_neg() local
141 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roleallow() local
160 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roleallow_srcdecl_neg() local
180 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roleallow_tgtdecl_neg() local
200 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classmapping_anon() local
222 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_classmapping_anon_inmacro() local
257 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_classmapping_anon_inmacro_neg() local
290 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classmapping_named() local
310 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classmapping_named_classmapname_neg() local
330 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classmapping_anon_classmapname_neg() local
350 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classmapping_anon_permset_neg() local
370 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rolebounds() local
390 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rolebounds_exists_neg() local
411 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rolebounds_role1_neg() local
431 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rolebounds_role2_neg() local
450 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_sensalias() local
468 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_sensalias_sensdecl_neg() local
487 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_catalias() local
505 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_catalias_catdecl_neg() local
527 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_catorder() local
547 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_catorder_neg() local
570 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_dominance() local
591 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_dominance_neg() local
612 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_cat_list() local
638 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_cat_list_catlistnull_neg() local
665 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_cat_list_rescatlistnull_neg() local
693 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_cat_list_catrange() local
721 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_cat_list_catrange_neg() local
752 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_cat_list_catname_neg() local
781 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_catset() local
804 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_catset_catlist_neg() local
827 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_catrange() local
852 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_catrange_catloworder_neg() local
880 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_catrange_cathighorder_neg() local
905 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_catrange_cat1_neg() local
930 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_catrange_cat2_neg() local
958 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_senscat() local
983 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_senscat_catrange_neg() local
1012 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_senscat_catsetname() local
1040 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_senscat_catsetname_neg() local
1067 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_senscat_sublist() local
1091 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_senscat_missingsens_neg() local
1115 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_senscat_category_neg() local
1142 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_senscat_currrangecat() local
1173 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_level() local
1210 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_level_catlist() local
1247 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_level_catset() local
1292 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_level_catset_name_neg() local
1324 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_level_sens_neg() local
1356 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_level_cat_neg() local
1391 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_level_senscat_neg() local
1420 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_levelrange_namedlvl() local
1449 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_levelrange_namedlvl_low_neg() local
1478 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_levelrange_namedlvl_high_neg() local
1505 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_levelrange_anonlvl() local
1532 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_levelrange_anonlvl_low_neg() local
1559 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_levelrange_anonlvl_high_neg() local
1589 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_constrain() local
1610 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_constrain_class_neg() local
1634 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_constrain_perm_neg() local
1656 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_constrain_perm_resolve_neg() local
1683 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_context() local
1715 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_context_macro() local
1758 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_context_macro_neg() local
1803 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_context_namedrange() local
1835 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_context_namedrange_neg() local
1861 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_context_user_neg() local
1889 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_context_role_neg() local
1917 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_context_type_neg() local
1946 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_context_anon_level_neg() local
1974 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roletransition() local
1995 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roletransition_srcdecl_neg() local
2016 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roletransition_tgtdecl_neg() local
2037 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roletransition_resultdecl_neg() local
2061 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_type_in_multiple_attrs() local
2085 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_multiple_excludes_with_not() local
2106 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_multiple_types_with_and() local
2126 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_using_attr() local
2145 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_name_neg() local
2164 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_undef_type_neg() local
2187 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_not() local
2207 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typeattributeset_undef_type_not_neg() local
2225 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_typealias() local
2244 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_typealias_neg() local
2264 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typebounds() local
2285 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typebounds_repeatbind_neg() local
2306 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typebounds_type1_neg() local
2325 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typebounds_type2_neg() local
2344 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_typepermissive() local
2363 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_typepermissive_neg() local
2385 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nametypetransition() local
2407 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nametypetransition_src_neg() local
2429 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nametypetransition_tgt_neg() local
2451 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nametypetransition_class_neg() local
2473 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nametypetransition_dest_neg() local
2498 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition() local
2526 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_namedrange_anon() local
2569 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_namedrange_anon_neg() local
2610 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_namedrange() local
2636 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_namedrange_neg() local
2661 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_type1_neg() local
2686 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_type2_neg() local
2711 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_class_neg() local
2738 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_call_level_l_anon() local
2780 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_call_level_l_anon_neg() local
2822 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_call_level_h_anon() local
2864 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_call_level_h_anon_neg() local
2904 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_level_l_neg() local
2929 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_level_h_neg() local
2954 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_anon_level_l() local
2983 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_anon_level_l_neg() local
3012 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_anon_level_h() local
3041 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_rangetransition_anon_level_h_neg() local
3065 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_classcommon() local
3084 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_classcommon_no_class_neg() local
3103 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_classcommon_no_common_neg() local
3124 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classpermset_named() local
3148 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classpermset_named_namedpermlist() local
3171 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classpermset_named_permlist_neg() local
3194 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classpermset_named_unnamedcps_neg() local
3217 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classpermset_anon() local
3240 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classpermset_anon_namedpermlist() local
3262 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_classpermset_anon_permlist_neg() local
3285 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule() local
3307 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule_permset() local
3329 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule_permset_neg() local
3351 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule_permset_permdne_neg() local
3372 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule_firsttype_neg() local
3393 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule_secondtype_neg() local
3414 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule_class_neg() local
3435 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_avrule_perm_neg() local
3457 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_transition() local
3478 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_transition_srcdecl_neg() local
3499 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_transition_tgtdecl_neg() local
3520 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_transition_objdecl_neg() local
3541 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_transition_resultdecl_neg() local
3563 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_change() local
3584 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_change_srcdecl_neg() local
3605 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_change_tgtdecl_neg() local
3626 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_change_objdecl_neg() local
3647 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_change_resultdecl_neg() local
3669 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_member() local
3690 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_member_srcdecl_neg() local
3711 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_member_tgtdecl_neg() local
3732 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_member_objdecl_neg() local
3753 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_type_rule_member_resultdecl_neg() local
3779 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_filecon() local
3805 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_filecon_neg() local
3830 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_filecon_anon_context() local
3856 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_filecon_anon_context_neg() local
3880 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_portcon() local
3906 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_portcon_neg() local
3931 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_portcon_anon_context() local
3955 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_portcon_anon_context_neg() local
3981 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_genfscon() local
4007 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_genfscon_neg() local
4032 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_genfscon_anon_context() local
4056 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_genfscon_anon_context_neg() local
4084 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_ipv4() local
4112 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_ipv6() local
4139 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_anonipaddr_ipv4() local
4166 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_anonnetmask_ipv4() local
4193 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_anonipaddr_ipv6() local
4220 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_anonnetmask_ipv6() local
4247 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_diffipfam_neg() local
4275 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_context_neg() local
4303 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_ipaddr_neg() local
4330 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_netmask_neg() local
4356 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_anon_context() local
4381 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_nodecon_anon_context_neg() local
4401 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_netifcon() local
4420 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_netifcon_otf_neg() local
4439 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_netifcon_interface_neg() local
4466 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_netifcon_unnamed() local
4492 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_netifcon_unnamed_packet_neg() local
4519 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_netifcon_unnamed_otf_neg() local
4538 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_netifcon_sublist_secondlist_missing_neg() local
4557 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_pirqcon() local
4576 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_pirqcon_context_neg() local
4604 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_pirqcon_anon_context() local
4624 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_pirqcon_anon_context_neg() local
4643 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_iomemcon() local
4662 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_iomemcon_context_neg() local
4688 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_iomemcon_anon_context() local
4710 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_iomemcon_anon_context_neg() local
4729 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ioportcon() local
4748 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ioportcon_context_neg() local
4774 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_ioportcon_anon_context() local
4796 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ioportcon_anon_context_neg() local
4815 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_pcidevicecon() local
4834 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_pcidevicecon_context_neg() local
4860 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_pcidevicecon_anon_context() local
4882 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_pcidevicecon_anon_context_neg() local
4909 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_fsuse() local
4936 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_fsuse_nocontext_neg() local
4963 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_fsuse_neg() local
4989 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_fsuse_anon() local
5015 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_fsuse_anon_neg() local
5041 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_sidcontext() local
5073 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_sidcontext_named_levels() local
5082 cil_resolve_level(level, (struct cil_level*)level->data, args); test_cil_resolve_sidcontext_named_levels() local
5107 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_sidcontext_named_context() local
5116 cil_resolve_context(context, (struct cil_context*)context->data, args); test_cil_resolve_sidcontext_named_context() local
5141 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_sidcontext_named_context_wrongname_neg() local
5150 cil_resolve_context(context, (struct cil_context*)context->data, args); test_cil_resolve_sidcontext_named_context_wrongname_neg() local
5174 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_sidcontext_named_context_invaliduser_neg() local
5196 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_blockinherit() local
5216 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_blockinherit_blockstrdne_neg() local
5236 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_in_block() local
5255 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_in_blockstrdne_neg() local
5276 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_in_macro() local
5296 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_in_optional() local
5319 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_noparam() local
5342 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_type() local
5365 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_role() local
5388 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_user() local
5411 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_sens() local
5434 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_cat() local
5458 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_catset() local
5481 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_catset_anon() local
5504 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_catset_anon_neg() local
5531 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_level() local
5558 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_level_anon() local
5585 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_level_anon_neg() local
5615 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_ipaddr() local
5644 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_ipaddr_anon() local
5673 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_ipaddr_anon_neg() local
5696 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_class() local
5717 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_classmap() local
5741 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_permset() local
5764 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_permset_anon() local
5787 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_classpermset_named() local
5809 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_classpermset_anon() local
5831 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_classpermset_anon_neg() local
5854 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_unknown_neg() local
5885 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_unknowncall_neg() local
5908 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_extraargs_neg() local
5931 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_copy_dup() local
5958 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_missing_arg_neg() local
5981 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_paramsflavor_neg() local
6012 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call1_unknownflavor_neg() local
6043 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_type() local
6070 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_role() local
6097 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_user() local
6124 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_sens() local
6151 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_cat() local
6179 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_catset() local
6206 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_catset_anon() local
6234 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_permset() local
6261 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_permset_anon() local
6288 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_classpermset_named() local
6314 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_classpermset_anon() local
6341 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_class() local
6367 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_classmap() local
6399 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_level() local
6430 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_level_anon() local
6464 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_ipaddr() local
6497 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_ipaddr_anon() local
6528 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_unknown_neg() local
6556 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_call2_name_neg() local
6583 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_name_call_args() local
6618 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_name_call_args_multipleparams() local
6649 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_name_call_args_diffflavor() local
6681 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_name_call_args_callnull_neg() local
6710 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_name_call_args_namenull_neg() local
6741 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_name_call_args_callargsnull_neg() local
6772 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_name_call_args_name_neg() local
6802 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_expr_stack_bools() local
6827 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_resolve_expr_stack_tunables() local
6851 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_expr_stack_type() local
6875 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_expr_stack_role() local
6899 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_expr_stack_user() local
6924 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_expr_stack_neg() local
6949 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_expr_stack_emptystr_neg() local
6975 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_boolif() local
6998 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_boolif_neg() local
7022 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_and() local
7049 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_not() local
7076 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_or() local
7103 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_xor() local
7130 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_eq() local
7157 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_neq() local
7185 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_oper1() local
7213 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_evaluate_expr_stack_oper2() local
7277 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_resolve_tunif_false() local
7300 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_resolve_tunif_true() local
7323 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_resolve_tunif_resolveexpr_neg() local
7378 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_userbounds() local
7398 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_userbounds_exists_neg() local
7419 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_userbounds_user1_neg() local
7439 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_userbounds_user2_neg() local
7459 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roletype() local
7478 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roletype_type_neg() local
7497 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_roletype_role_neg() local
7519 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_userrole() local
7536 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_userrole_user_neg() local
7555 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_userrole_role_neg() local
7578 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userlevel() local
7606 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_userlevel_macro() local
7648 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_userlevel_macro_neg() local
7685 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userlevel_level_anon() local
7711 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userlevel_level_anon_neg() local
7738 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userlevel_user_neg() local
7765 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userlevel_level_neg() local
7792 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userrange() local
7819 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_userrange_macro() local
7860 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_userrange_macro_neg() local
7899 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userrange_range_anon() local
7927 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userrange_range_anon_neg() local
7954 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userrange_user_neg() local
7981 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_userrange_range_neg() local
8409 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_call1() local
8435 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_call1_neg() local
8461 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_call2() local
8491 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_call2_neg() local
8519 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_boolif() local
8544 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_boolif_neg() local
8569 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_tunif() local
8594 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_tunif_neg() local
8618 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catorder() local
8641 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catorder_neg() local
8664 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_dominance() local
8687 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_dominance_neg() local
8709 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roleallow() local
8731 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roleallow_neg() local
8753 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_sensalias() local
8774 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_sensalias_neg() local
8796 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catalias() local
8817 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catalias_neg() local
8840 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catset() local
8863 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catset_catlist_neg() local
8888 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catrange() local
8916 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MLS, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_catrange_neg() local
8940 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_level() local
8976 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_level_neg() local
9012 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_levelrange() local
9051 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_levelrange_neg() local
9088 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_constrain() local
9115 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_constrain_neg() local
9142 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_mlsconstrain() local
9169 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_mlsconstrain_neg() local
9199 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_context() local
9239 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC1, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_context_neg() local
9276 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_senscat() local
9303 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_senscat_neg() local
9328 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roletransition() local
9352 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roletransition_srcdecl_neg() local
9376 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roletransition_tgtdecl_neg() local
9400 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roletransition_resultdecl_neg() local
9424 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typeattributeset() local
9447 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typeattributeset_undef_type_neg() local
9470 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typealias() local
9492 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typealias_notype_neg() local
9515 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typebounds() local
9537 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typebounds_neg() local
9559 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typepermissive() local
9580 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_typepermissive_neg() local
9608 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_rangetransition() local
9636 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_rangetransition_neg() local
9661 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_nametypetransition() local
9686 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_nametypetransition_neg() local
9710 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_avrule() local
9731 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_avrule_src_nores_neg() local
9753 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_avrule_tgt_nores_neg() local
9776 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_avrule_class_nores_neg() local
9799 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_avrule_datum_null_neg() local
9824 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_type_rule_transition() local
9848 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_type_rule_transition_neg() local
9873 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_type_rule_change() local
9897 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_type_rule_change_neg() local
9922 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_type_rule_member() local
9946 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_type_rule_member_neg() local
9974 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userbounds() local
9999 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userbounds_neg() local
10025 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roletype() local
10050 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roletype_role_neg() local
10075 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_roletype_type_neg() local
10101 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userrole() local
10126 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userrole_user_neg() local
10151 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userrole_role_neg() local
10180 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userlevel() local
10209 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userlevel_neg() local
10238 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userrange() local
10267 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_userrange_neg() local
10294 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_filecon() local
10323 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_filecon_neg() local
10352 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_portcon() local
10381 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_portcon_neg() local
10410 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_genfscon() local
10439 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_genfscon_neg() local
10469 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_nodecon() local
10500 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_nodecon_ipaddr_neg() local
10531 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_nodecon_netmask_neg() local
10554 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_netifcon() local
10576 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_netifcon_neg() local
10598 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_pirqcon() local
10620 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_pirqcon_neg() local
10642 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_iomemcon() local
10664 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_iomemcon_neg() local
10686 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_ioportcon() local
10708 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_ioportcon_neg() local
10730 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_pcidevicecon() local
10752 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_pcidevicecon_neg() local
10782 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_fsuse() local
10804 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_fsuse_neg() local
10834 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_sidcontext() local
10862 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_sidcontext_neg() local
10885 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_BLKIN, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_blockinherit() local
10908 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_classcommon() local
10930 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_classcommon_neg() local
10958 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_rolebounds() local
10983 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_rolebounds_neg() local
11012 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_callstack() local
11040 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_call() local
11067 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_optional() local
11095 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_macro() local
11125 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_optstack() local
11148 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, test_ast_node_opt, NULL); test_cil_resolve_ast_node_helper_optstack_tunable_neg() local
11177 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_CALL1, &changed, NULL, test_ast_node_opt, NULL); test_cil_resolve_ast_node_helper_optstack_macro_neg() local
11207 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_TIF, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_nodenull_neg() local
11257 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_dbflavor_neg() local
11282 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC3, &changed, NULL, NULL, NULL); test_cil_resolve_ast_node_helper_pass_neg() local
11309 struct cil_args_resolve *args = gen_resolve_args(test_db, CIL_PASS_MISC2, &changed, NULL, test_ast_node_opt, NULL); test_cil_resolve_ast_node_helper_optfailedtoresolve() local
[all...]
/third_party/node/test/js-native-api/test_conversions/
H A Dtest_conversions.c8 napi_value args[1]; in AsBool() local
9 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in AsBool()
12 NODE_API_CALL(env, napi_get_value_bool(env, args[0], &value)); in AsBool()
22 napi_value args[1]; in AsInt32() local
23 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in AsInt32()
26 NODE_API_CALL(env, napi_get_value_int32(env, args[0], &value)); in AsInt32()
36 napi_value args[1]; in AsUInt32() local
37 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in AsUInt32()
40 NODE_API_CALL(env, napi_get_value_uint32(env, args[0], &value)); in AsUInt32()
50 napi_value args[ in AsInt64() local
64 napi_value args[1]; AsDouble() local
78 napi_value args[1]; AsString() local
94 napi_value args[1]; ToBool() local
105 napi_value args[1]; ToNumber() local
116 napi_value args[1]; ToObject() local
127 napi_value args[1]; ToString() local
[all...]
/third_party/node/test/js-native-api/test_object/
H A Dtest_object.c11 napi_value args[2]; in Get() local
12 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in Get()
17 NODE_API_CALL(env, napi_typeof(env, args[0], &valuetype0)); in Get()
23 NODE_API_CALL(env, napi_typeof(env, args[1], &valuetype1)); in Get()
28 napi_value object = args[0]; in Get()
30 NODE_API_CALL(env, napi_get_property(env, object, args[1], &output)); in Get()
37 napi_value args[2]; in GetNamed() local
40 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in GetNamed()
45 NODE_API_CALL(env, napi_typeof(env, args[0], &value_type0)); in GetNamed()
51 NODE_API_CALL(env, napi_typeof(env, args[ in GetNamed()
70 napi_value args[1]; GetPropertyNames() local
89 napi_value args[1]; GetSymbolNames() local
113 napi_value args[1]; GetEnumerableWritableNames() local
141 napi_value args[1]; GetOwnWritableNames() local
169 napi_value args[1]; GetEnumerableConfigurableNames() local
198 napi_value args[1]; GetOwnConfigurableNames() local
225 napi_value args[3]; Set() local
252 napi_value args[3]; SetNamed() local
287 napi_value args[2]; Has() local
315 napi_value args[2]; HasNamed() local
351 napi_value args[2]; HasOwn() local
379 napi_value args[2]; Delete() local
423 napi_value args[1]; Inflate() local
587 napi_value args[1]; TestFreeze() local
599 napi_value args[1]; TestSeal() local
[all...]
/third_party/lz4/tests/
H A Dtest-lz4-speed.py34 args = None variable
52 stdout_lines, stderr_lines = popen.communicate(timeout=args.timeout)
89 def send_email_with_attachments(branch, commit, last_commit, args, text, results_files,
96 args.lowerLimit, args.ratioLimit)
98 execute('mutt -s "' + email_topic + '" ' + args.emails + ' -a ' + results_files
101 execute('mail -s "' + email_topic + '" ' + args.emails + ' < ' + logFileName)
147 def benchmark_and_compare(branch, commit, last_commit, args, executableName, md5sum, compilerVersion, resultsFileName,
150 while os.getloadavg()[0] > args.maxLoadAvg:
152 % (os.getloadavg()[0], args
255 args = parser.parse_args() global() variable
[all...]
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-intrinsics-generator.cc34 const InterpreterAssembler::RegListNodePair& args);
38 const InterpreterAssembler::RegListNodePair& args, TNode<Context> context,
43 TNode<Object> name(const InterpreterAssembler::RegListNodePair& args, \
59 TNode<Context> context, const InterpreterAssembler::RegListNodePair& args) { in GenerateInvokeIntrinsic()
61 return generator.InvokeIntrinsic(function_id, context, args); in GenerateInvokeIntrinsic()
68 const InterpreterAssembler::RegListNodePair& args) { in InvokeIntrinsic()
91 AbortIfArgCountMismatch(expected_arg_count, args.reg_count()); \ in InvokeIntrinsic()
93 TNode<Object> value = name(args, context, expected_arg_count); \ in InvokeIntrinsic()
114 const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, in IntrinsicAsBuiltinCall()
120 __ LoadRegisterFromRegisterList(args, in IntrinsicAsBuiltinCall()
57 GenerateInvokeIntrinsic( InterpreterAssembler* assembler, TNode<Uint32T> function_id, TNode<Context> context, const InterpreterAssembler::RegListNodePair& args) GenerateInvokeIntrinsic() argument
66 InvokeIntrinsic( TNode<Uint32T> function_id, TNode<Context> context, const InterpreterAssembler::RegListNodePair& args) InvokeIntrinsic() argument
113 IntrinsicAsBuiltinCall( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, Builtin name, int arg_count) IntrinsicAsBuiltinCall() argument
135 CopyDataProperties( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) CopyDataProperties() argument
143 CopyDataPropertiesWithExcludedPropertiesOnStack( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) CopyDataPropertiesWithExcludedPropertiesOnStack() argument
157 CreateIterResultObject( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) CreateIterResultObject() argument
164 CreateAsyncFromSyncIterator( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) CreateAsyncFromSyncIterator() argument
171 CreateJSGeneratorObject( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) CreateJSGeneratorObject() argument
178 GeneratorGetResumeMode( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) GeneratorGetResumeMode() argument
189 GeneratorClose( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) GeneratorClose() argument
200 GetImportMetaObject( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) GetImportMetaObject() argument
206 AsyncFunctionAwaitCaught( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncFunctionAwaitCaught() argument
213 AsyncFunctionAwaitUncaught( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncFunctionAwaitUncaught() argument
220 AsyncFunctionEnter( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncFunctionEnter() argument
227 AsyncFunctionReject( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncFunctionReject() argument
234 AsyncFunctionResolve( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncFunctionResolve() argument
241 AsyncGeneratorAwaitCaught( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncGeneratorAwaitCaught() argument
248 AsyncGeneratorAwaitUncaught( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncGeneratorAwaitUncaught() argument
255 AsyncGeneratorReject( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncGeneratorReject() argument
262 AsyncGeneratorResolve( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncGeneratorResolve() argument
269 AsyncGeneratorYield( const InterpreterAssembler::RegListNodePair& args, TNode<Context> context, int arg_count) AsyncGeneratorYield() argument
[all...]
/third_party/vixl/tools/
H A Dtest.py96 args = argparse.ArgumentParser(
103 args.add_argument('filters', metavar='filter', nargs='*',
107 test_arguments = args.add_argument_group(
141 general_arguments = args.add_argument_group('General options')
179 return args.parse_args()
261 jobs = args.jobs, progress_prefix = 'cpp lint: ')
291 def CanRunAarch64(options, args):
299 def CanRunAarch32(options, args):
306 def RunBenchmarks(options, args):
308 if CanRunAarch32(options, args)
[all...]
/test/xts/acts/multimedia/camera/camera_ndk_test/src/main/cpp/
H A Dmain.cpp38 napi_value args[2] = {nullptr}; in InitCamera() local
44 napi_get_cb_info(env, info, &argc, args , nullptr, nullptr); in InitCamera()
46 napi_get_value_string_utf8(env, args[0], nullptr, 0, &typeLen); in InitCamera()
48 napi_get_value_string_utf8(env, args[0], surfaceId, typeLen + 1, &typeLen); in InitCamera()
51 napi_get_value_int32(env, args[1], &cameraDeviceIndex); in InitCamera()
142 napi_value args[2] = {nullptr}; in CreateCameraInputWithPositionAndType() local
145 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr); in CreateCameraInputWithPositionAndType()
148 napi_typeof(env, args[0], &valuetype0); in CreateCameraInputWithPositionAndType()
150 napi_get_value_int32(env, args[0], &x); in CreateCameraInputWithPositionAndType()
153 napi_typeof(env, args[ in CreateCameraInputWithPositionAndType()
202 napi_value args[2] = {nullptr}; CreatePhotoOutput() local
219 napi_value args[2] = {nullptr}; CreateVideoOutput() local
533 napi_value args[2] = {nullptr}; SessionIsFlashModeSupported() local
559 napi_value args[2] = {nullptr}; SessionGetPhotoRotation() local
574 napi_value args[2] = {nullptr}; SessionGetVideoRotation() local
589 napi_value args[2] = {nullptr}; SessionGetPreviewRotation() local
604 napi_value args[2] = {nullptr}; SessionSetPreviewRotation() local
621 napi_value args[2] = {nullptr}; SessionSetFlashMode() local
636 napi_value args[2] = {nullptr}; SessionIsExposureModeSupported() local
662 napi_value args[2] = {nullptr}; SessionSetExposureMode() local
692 napi_value args[2] = {nullptr}; SessionSetMeteringPoint() local
731 napi_value args[2] = {nullptr}; SessionSetExposureBias() local
756 napi_value args[2] = {nullptr}; SessionIsFocusModeSupported() local
782 napi_value args[2] = {nullptr}; SessionSetFocusMode() local
797 napi_value args[2] = {nullptr}; SessionSetFocusPoint() local
863 napi_value args[2] = {nullptr}; SessionSetZoomRatio() local
878 napi_value args[2] = {nullptr}; SessionIsVideoStabilizationModeSupported() local
902 napi_value args[2] = {nullptr}; SessionSetVideoStabilizationMode() local
964 napi_value args[1] = {nullptr}; TakePictureWithSettings() local
981 napi_value args[1] = {nullptr}; OHCaptureSessionRegisterCallback() local
997 napi_value args[1] = {nullptr}; OHCaptureSessionUnregisterCallback() local
1013 napi_value args[1] = {nullptr}; OHCameraManagerGetSupportedSceneModes() local
1049 napi_value args[1] = {nullptr}; OHCameraManagerDeleteSceneModes() local
1066 napi_value args[1] = {nullptr}; OHCameraManagerGetSupportedCameraOutputCapabilityWithSceneMode() local
1082 napi_value args[1] = {nullptr}; OHCaptureSessionSetSessionMode() local
1098 napi_value args[1] = {nullptr}; OHCaptureSessionCanAddInput() local
1123 napi_value args[1] = {nullptr}; OHCaptureSessionCanAddPreviewOutput() local
1148 napi_value args[1] = {nullptr}; OHCaptureSessionCanAddPhotoOutput() local
1173 napi_value args[1] = {nullptr}; OHCaptureSessionCanAddVideoOutput() local
1198 napi_value args[1] = {nullptr}; OHCaptureSessionAddSecureOutput() local
1214 napi_value args[1] = {nullptr}; OHCameraInputOpenSecureCamera() local
1237 napi_value args[1] = {nullptr}; OHCameraManagerSetSceneMode() local
1253 napi_value args[1] = {nullptr}; OHCameraManagerCreatePreviewOutputUsedInPreconfig() local
1271 napi_value args[2] = {nullptr}; OHCameraManagerCreatePhotoOutputUsedInPreconfig() local
1290 napi_value args[2] = {nullptr}; OHCaptureSessionCanPreconfig() local
1316 napi_value args[3] = {nullptr}; OHCaptureSessionCanPreconfigWithRatio() local
1345 napi_value args[2] = {nullptr}; OHCaptureSessionPreconfig() local
1362 napi_value args[3] = {nullptr}; OHCaptureSessionPreconfigWithRatio() local
1381 napi_value args[2] = {nullptr}; OHCameraManagerCreateVideoOutputUsedInPreconfig() local
1401 napi_value args[1] = {nullptr}; OHVideoOutputGetActiveProfile() local
1417 napi_value args[1] = {nullptr}; OHVideoOutputDeleteProfile() local
1433 napi_value args[1] = {nullptr}; OHPreviewOutputGetActiveProfile() local
1449 napi_value args[1] = {nullptr}; OHPreviewOutputDeleteProfile() local
1465 napi_value args[1] = {nullptr}; OHPhotoOutputGetActiveProfile() local
1481 napi_value args[1] = {nullptr}; OHPhotoOutputDeleteProfile() local
1497 napi_value args[1] = {nullptr}; OHCaptureSessionRegisterCallbackOn() local
1513 napi_value args[1] = {nullptr}; OHCaptureSessionUnregisterCallbackOff() local
1529 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterPhotoAvailableCallback() local
1545 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterPhotoAvailableCallback() local
1561 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterPhotoAssetAvailableCallback() local
1577 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterPhotoAssetAvailableCallback() local
1593 napi_value args[1] = {nullptr}; OHPhotoOutputIsMovingPhotoSupported() local
1618 napi_value args[NUMBER_2] = {nullptr}; OHPhotoOutputEnableMovingPhoto() local
1637 napi_value args[1] = {nullptr}; OHPhotoNativeGetMainImage() local
1653 napi_value args[1] = {nullptr}; OHPhotoNativeRelease() local
1669 napi_value args[1] = {nullptr}; OHCameraManagerCreatePhotoOutputWithoutSurface() local
1693 napi_value args[1] = {nullptr}; OHCameraManagerIsTorchSupported() local
1718 napi_value args[1] = {nullptr}; OHCameraManagerIsTorchSupportedByTorchMode() local
1743 napi_value args[1] = {nullptr}; OHCameraManagerSetTorchMode() local
1760 napi_value args[1] = {nullptr}; OHCaptureSessionGetExposureValue() local
1777 napi_value args[1] = {nullptr}; OHCaptureSessionGetFocalLength() local
1794 napi_value args[1] = {nullptr}; OHCaptureSessionSetSmoothZoom() local
1811 napi_value args[1] = {nullptr}; OHCaptureSessionGetSupportedColorSpaces() local
1835 napi_value args[1] = {nullptr}; OHCaptureSessionDeleteColorSpaces() local
1852 napi_value args[1] = {nullptr}; OHCaptureSessionGetActiveColorSpace() local
1896 napi_value args[1] = {nullptr}; OHCaptureSessionSetActiveColorSpace() local
1913 napi_value args[1] = {nullptr}; OHPreviewOutputGetSupportedFrameRates() local
1938 napi_value args[1] = {nullptr}; OHPreviewOutputSetFrameRate() local
1955 napi_value args[1] = {nullptr}; OHPreviewOutputGetActiveFrameRate() local
1982 napi_value args[1] = {nullptr}; OHVideoOutputGetSupportedFrameRates() local
2006 napi_value args[1] = {nullptr}; OHVideoOutputSetFrameRate() local
2023 napi_value args[1] = {nullptr}; OHVideoOutputGetActiveFrameRate() local
2050 napi_value args[1] = {nullptr}; OHVideoOutputDeleteFrameRates() local
2067 napi_value args[1] = {nullptr}; OHPreviewOutputDeleteFrameRates() local
2084 napi_value args[1] = {nullptr}; OHCameraManagerRegisterTorchStatusCallback() local
2101 napi_value args[1] = {nullptr}; OHCameraManagerUnregisterTorchStatusCallback() local
2118 napi_value args[1] = {nullptr}; OHCaptureSessionRegisterSmoothZoomInfoCallback() local
2135 napi_value args[1] = {nullptr}; OHCaptureSessionUnregisterSmoothZoomInfoCallback() local
2152 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterCaptureStartWithInfoCallback() local
2169 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterCaptureStartWithInfoCallback() local
2186 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterCaptureEndCallback() local
2203 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterCaptureEndCallback() local
2220 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterFrameShutterEndCallback() local
2237 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterFrameShutterEndCallback() local
2254 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterCaptureReadyCallback() local
2271 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterCaptureReadyCallback() local
2288 napi_value args[1] = {nullptr}; OHPhotoOutputRegisterEstimatedCaptureDurationCallback() local
2305 napi_value args[1] = {nullptr}; OHPhotoOutputUnregisterEstimatedCaptureDurationCallback() local
2322 napi_value args[1] = {nullptr}; OHCameraManagerTorchMode() local
[all...]
/third_party/node/lib/internal/process/
H A Dtask_queues.js76 if (tock.args === undefined) {
79 const args = tock.args;
80 switch (args.length) {
81 case 1: callback(args[0]); break;
82 case 2: callback(args[0], args[1]); break;
83 case 3: callback(args[0], args[1], args[
[all...]
/third_party/skia/third_party/externals/angle2/scripts/
H A Dtrigger.py59 def invoke_mb(args):
61 mb_args = ['python', mb_script_path] + args
75 args, unknown = parse_args()
77 logging.basicConfig(level=args.log.upper())
79 path = args.gn_path.replace('\\', '/')
83 get_command_output = invoke_mb(['get-swarming-command', out_gn_path, args.test, '--as-list'])
87 invoke_mb(['isolate', out_gn_path, args.test])
90 isolate_file = os.path.join(out_file_path, '%s.isolate' % args.test)
91 archive_file = os.path.join(out_file_path, '%s.archive.json' % args.test)
100 digest = json.load(f).get(args
[all...]
/third_party/skia/tools/
H A Dbuild_command_buffer.py35 'script will reset the gn args in this directory on each run.')
36 parser.add_argument('--extra-gn-args', default='',
39 parser.add_argument('--extra-ninja-args', default='',
49 args = parser.parse_args()
51 args.chrome_dir = os.path.abspath(args.chrome_dir)
52 args.output_dir = os.path.abspath(args.output_dir)
54 if args.no_hooks:
55 args
[all...]
/third_party/python/Modules/_sqlite/clinic/
H A Dmodule.c.h18 pysqlite_complete_statement(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in pysqlite_complete_statement() argument
26 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf); in pysqlite_complete_statement()
27 if (!args) { in pysqlite_complete_statement()
30 if (!PyUnicode_Check(args[0])) { in pysqlite_complete_statement()
31 _PyArg_BadArgument("complete_statement", "argument 'statement'", "str", args[0]); in pysqlite_complete_statement()
35 statement = PyUnicode_AsUTF8AndSize(args[0], &statement_length); in pysqlite_complete_statement()
67 pysqlite_enable_shared_cache(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in pysqlite_enable_shared_cache() argument
75 args = _PyArg_UnpackKeywords(args, narg in pysqlite_enable_shared_cache()
103 pysqlite_register_adapter(PyObject *module, PyObject *const *args, Py_ssize_t nargs) pysqlite_register_adapter() argument
134 pysqlite_register_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs) pysqlite_register_converter() argument
200 pysqlite_adapt(PyObject *module, PyObject *const *args, Py_ssize_t nargs) pysqlite_adapt() argument
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_memory_manager.c404 mali_osk_errcode_t _mali_ukk_mem_allocate(_ali_uk_alloc_mem_s *args) in _mali_ukk_mem_allocate() argument
406 struct mali_session_data *session = (struct mali_session_data *)(uintptr_t)args->ctx; in _mali_ukk_mem_allocate()
414 (" _mali_ukk_mem_allocate, vaddr=0x%x, size =0x%x! \n", args->gpu_vaddr, args->psize)); in _mali_ukk_mem_allocate()
418 mali_vma_node = mali_vma_offset_search(&session->allocation_mgr, args->gpu_vaddr, 0); in _mali_ukk_mem_allocate()
432 mali_allocation->psize = args->psize; in _mali_ukk_mem_allocate()
433 mali_allocation->vsize = args->vsize; in _mali_ukk_mem_allocate()
440 if (args->flags & MALI_MEMORY_ALLOCATE_SWAPPABLE) { in _mali_ukk_mem_allocate()
442 } else if (args->flags & MALI_MEMORY_ALLOCATE_RESIZEABLE) { in _mali_ukk_mem_allocate()
445 } else if (args in _mali_ukk_mem_allocate()
604 _mali_ukk_mem_free(mali_uk_free_mem_s *args) _mali_ukk_mem_free() argument
637 _mali_ukk_mem_bind(mali_uk_bind_mem_s *args) _mali_ukk_mem_bind() argument
754 _mali_ukk_mem_unbind(mali_uk_unbind_mem_s *args) _mali_ukk_mem_unbind() argument
785 _mali_ukk_mem_cow(mali_uk_cow_mem_s *args) _mali_ukk_mem_cow() argument
914 _mali_ukk_mem_cow_modify_range(mali_uk_cow_modify_range_s *args) _mali_ukk_mem_cow_modify_range() argument
950 _mali_ukk_mem_resize(mali_uk_mem_resize_s *args) _mali_ukk_mem_resize() argument
975 _mali_ukk_mem_usage_get(mali_uk_profiling_memory_usage_get_s *args) _mali_ukk_mem_usage_get() argument
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_memory_manager.c401 _mali_osk_errcode_t _mali_ukk_mem_allocate(_mali_uk_alloc_mem_s *args) in _mali_ukk_mem_allocate() argument
403 struct mali_session_data *session = (struct mali_session_data *)(uintptr_t)args->ctx; in _mali_ukk_mem_allocate()
410 MALI_DEBUG_PRINT(4, (" _mali_ukk_mem_allocate, vaddr=0x%x, size =0x%x! \n", args->gpu_vaddr, args->psize)); in _mali_ukk_mem_allocate()
414 mali_vma_node = mali_vma_offset_search(&session->allocation_mgr, args->gpu_vaddr, 0); in _mali_ukk_mem_allocate()
430 mali_allocation->psize = args->psize; in _mali_ukk_mem_allocate()
431 mali_allocation->vsize = args->vsize; in _mali_ukk_mem_allocate()
438 if (args->flags & _MALI_MEMORY_ALLOCATE_SWAPPABLE) { in _mali_ukk_mem_allocate()
440 } else if (args->flags & _MALI_MEMORY_ALLOCATE_RESIZEABLE) { in _mali_ukk_mem_allocate()
443 } else if (args in _mali_ukk_mem_allocate()
603 _mali_ukk_mem_free(_mali_uk_free_mem_s *args) _mali_ukk_mem_free() argument
636 _mali_ukk_mem_bind(_mali_uk_bind_mem_s *args) _mali_ukk_mem_bind() argument
755 _mali_ukk_mem_unbind(_mali_uk_unbind_mem_s *args) _mali_ukk_mem_unbind() argument
785 _mali_ukk_mem_cow(_mali_uk_cow_mem_s *args) _mali_ukk_mem_cow() argument
913 _mali_ukk_mem_cow_modify_range(_mali_uk_cow_modify_range_s *args) _mali_ukk_mem_cow_modify_range() argument
950 _mali_ukk_mem_resize(_mali_uk_mem_resize_s *args) _mali_ukk_mem_resize() argument
976 _mali_ukk_mem_usage_get(_mali_uk_profiling_memory_usage_get_s *args) _mali_ukk_mem_usage_get() argument
[all...]

Completed in 26 milliseconds

12345678910>>...237