Home
last modified time | relevance | path

Searched refs:target (Results 1 – 22 of 22) sorted by relevance

/system/netd/
DNetdConstants.cpp44 static int execIptables(IptablesTarget target, bool silent, va_list args) { in execIptables() argument
62 if (target == V4 || target == V4V6) { in execIptables()
72 if (target == V6 || target == V4V6) { in execIptables()
85 int execIptables(IptablesTarget target, ...) { in execIptables() argument
87 va_start(args, target); in execIptables()
88 int res = execIptables(target, false, args); in execIptables()
93 int execIptablesSilently(IptablesTarget target, ...) { in execIptablesSilently() argument
95 va_start(args, target); in execIptablesSilently()
96 int res = execIptables(target, true, args); in execIptablesSilently()
DFirewallController.cpp86 IptablesTarget target = V4; in setEgressSourceRule() local
88 target = V6; in setEgressSourceRule()
99 res |= execIptables(target, op, LOCAL_INPUT, "-d", addr, "-j", "RETURN", NULL); in setEgressSourceRule()
100 res |= execIptables(target, op, LOCAL_OUTPUT, "-s", addr, "-j", "RETURN", NULL); in setEgressSourceRule()
106 IptablesTarget target = V4; in setEgressDestRule() local
108 target = V6; in setEgressDestRule()
125 res |= execIptables(target, op, LOCAL_INPUT, "-s", addr, "-p", protocolStr, in setEgressDestRule()
127 res |= execIptables(target, op, LOCAL_OUTPUT, "-d", addr, "-p", protocolStr, in setEgressDestRule()
DNetdConstants.h36 int execIptables(IptablesTarget target, ...);
37 int execIptablesSilently(IptablesTarget target, ...);
DCommandListener.cpp106 static void createChildChains(IptablesTarget target, const char* table, const char* parentChain, in createChildChains() argument
118 execIptablesSilently(target, "-t", table, "-D", parentChain, "-j", *childChain, NULL); in createChildChains()
119 execIptablesSilently(target, "-t", table, "-F", *childChain, NULL); in createChildChains()
120 execIptablesSilently(target, "-t", table, "-X", *childChain, NULL); in createChildChains()
121 execIptables(target, "-t", table, "-N", *childChain, NULL); in createChildChains()
122 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL); in createChildChains()
/system/media/
DCleanSpec.mk48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterfw_intermediates)
49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_imageproc_inte…
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_text_intermedi…
51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_ui_intermediat…
52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterpack_videosrc_inter…
54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/filterfw_intermediates)
/system/core/rootdir/
DAndroid.mk35 $(transform-prebuilt-to-target)
46 $(transform-prebuilt-to-target)
53 $(transform-prebuilt-to-target)
64 $(transform-prebuilt-to-target)
70 $(transform-prebuilt-to-target)
Dinit.rc72 # Directory-target for where the secure container
/system/core/toolbox/cp/
Dutils.c324 char target[MAXPATHLEN]; in copy_link() local
326 if ((len = readlink(p->fts_path, target, sizeof(target)-1)) == -1) { in copy_link()
330 target[len] = '\0'; in copy_link()
335 if (symlink(target, to.p_path)) { in copy_link()
336 warn("symlink: %s", target); in copy_link()
Dcp.c111 char *target, **src; in cp_main() local
211 target = argv[--argc]; in cp_main()
212 if (strlcpy(to.p_path, target, sizeof(to.p_path)) >= sizeof(to.p_path)) in cp_main()
213 errx(EXIT_FAILURE, "%s: name too long", target); in cp_main()
/system/core/libpixelflinger/codeflinger/
Dmips_opcode.h59 unsigned target: 26; member
92 unsigned target: 26; member
DARMAssemblerProxy.cpp33 ARMAssemblerProxy::ARMAssemblerProxy(ARMAssemblerInterface* target) in ARMAssemblerProxy() argument
34 : mTarget(target) in ARMAssemblerProxy()
43 void ARMAssemblerProxy::setTarget(ARMAssemblerInterface* target) in setTarget() argument
46 mTarget = target; in setTarget()
DARMAssemblerProxy.h37 ARMAssemblerProxy(ARMAssemblerInterface* target);
40 void setTarget(ARMAssemblerInterface* target);
Dmips_disassem.c461 print_addr((loc & 0xF0000000) | (i.JType.target << 2)); in db_disasm_insn()
DGGLAssembler.h174 GGLAssembler(ARMAssemblerInterface* target);
DGGLAssembler.cpp33 GGLAssembler::GGLAssembler(ARMAssemblerInterface* target) in GGLAssembler() argument
34 : ARMAssemblerProxy(target), in GGLAssembler()
/system/core/include/pixelflinger/
Dpixelflinger.h251 void (*texEnvi)(void* c, GGLenum target,
255 void (*texEnvxv)(void* c, GGLenum target,
259 void (*texParameteri)(void* c, GGLenum target,
/system/core/init/
Dbuiltins.c366 char *source, *target, *system; in do_mount() local
391 target = args[3]; in do_mount()
403 if (mount(tmp, target, system, flags, options) < 0) { in do_mount()
431 if (mount(tmp, target, system, flags, options) < 0) { in do_mount()
451 if (mount(source, target, system, flags, options) < 0) { in do_mount()
Dreadme.txt200 symlink <target> <path>
201 Create a symbolic link at <path> with the value <target>
/system/core/libpixelflinger/
Dpixelflinger.cpp332 static void ggl_texEnvi(void* con, GGLenum target, in ggl_texEnvi() argument
337 if (target != GGL_TEXTURE_ENV || pname != GGL_TEXTURE_ENV_MODE) { in ggl_texEnvi()
357 static void ggl_texEnvxv(void* con, GGLenum target, in ggl_texEnvxv() argument
361 if (target != GGL_TEXTURE_ENV) { in ggl_texEnvxv()
367 ggl_texEnvi(con, target, pname, params[0]); in ggl_texEnvxv()
389 GGLenum target, in ggl_texParameteri() argument
394 if (target != GGL_TEXTURE_2D) { in ggl_texParameteri()
/system/core/fs_mgr/
Dfs_mgr.c367 static void check_fs(char *blk_dev, char *type, char *target) in check_fs() argument
390 ret = mount(blk_dev, target, type, tmpmnt_flags, tmpmnt_opts); in check_fs()
392 umount(target); in check_fs()
/system/core/adb/
DSERVICES.TXT74 A variant of host-serial used to target the single USB device connected
78 A variant of host-serial used to target the single emulator instance
105 and indicates which device/emulator to target.
/system/extras/tests/fstest/
DREADME35 on the rule must match the permissions on the symlink itself, not the target.