Searched refs:target (Results 1 - 18 of 18) sorted by relevance

/system/netd/
H A DNetdConstants.cpp44 static int execIptables(IptablesTarget target, bool silent, va_list args) { argument
62 if (target == V4 || target == V4V6) {
72 if (target == V6 || target == V4V6) {
85 int execIptables(IptablesTarget target, ...) { argument
87 va_start(args, target);
88 int res = execIptables(target, false, args);
93 int execIptablesSilently(IptablesTarget target, ...) { argument
95 va_start(args, target);
[all...]
H A DNetdConstants.h36 int execIptables(IptablesTarget target, ...);
37 int execIptablesSilently(IptablesTarget target, ...);
H A DFirewallController.cpp86 IptablesTarget target = V4; local
88 target = V6;
99 res |= execIptables(target, op, LOCAL_INPUT, "-d", addr, "-j", "RETURN", NULL);
100 res |= execIptables(target, op, LOCAL_OUTPUT, "-s", addr, "-j", "RETURN", NULL);
106 IptablesTarget target = V4; local
108 target = V6;
125 res |= execIptables(target, op, LOCAL_INPUT, "-s", addr, "-p", protocolStr,
127 res |= execIptables(target, op, LOCAL_OUTPUT, "-d", addr, "-p", protocolStr,
H A DCommandListener.cpp106 static void createChildChains(IptablesTarget target, const char* table, const char* parentChain, argument
118 execIptablesSilently(target, "-t", table, "-D", parentChain, "-j", *childChain, NULL);
119 execIptablesSilently(target, "-t", table, "-F", *childChain, NULL);
120 execIptablesSilently(target, "-t", table, "-X", *childChain, NULL);
121 execIptables(target, "-t", table, "-N", *childChain, NULL);
122 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL);
/system/core/rootdir/
H A DAndroid.mk35 $(transform-prebuilt-to-target)
42 # Only copy init.rc if the target doesn't have its own.
46 $(transform-prebuilt-to-target)
53 $(transform-prebuilt-to-target)
57 # init.usb.rc is handled by build/target/product/core.rc
64 $(transform-prebuilt-to-target)
70 $(transform-prebuilt-to-target)
/system/core/toolbox/cp/
H A Dutils.c324 char target[MAXPATHLEN]; local
326 if ((len = readlink(p->fts_path, target, sizeof(target)-1)) == -1) {
330 target[len] = '\0';
335 if (symlink(target, to.p_path)) {
336 warn("symlink: %s", target);
442 "usage: cp [-R [-H | -L | -P]] [-f | -i] [-alNpv] src target\n"
H A Dcp.c51 * Cp copies source files to target files.
54 * current target file. Since fts(3) does not change directories,
62 * in "to") to form the final target path.
111 char *target, **src; local
210 /* Save the target base in "to". */
211 target = argv[--argc];
212 if (strlcpy(to.p_path, target, sizeof(to.p_path)) >= sizeof(to.p_path))
213 errx(EXIT_FAILURE, "%s: name too long", target);
230 * cp [-R] source target
235 * In (1), the target become
[all...]
/system/core/libpixelflinger/codeflinger/
H A Dmips_opcode.h59 unsigned target: 26; member in struct:__anon425::__anon427
92 unsigned target: 26; member in struct:__anon425::__anon431
H A DARMAssemblerProxy.cpp33 ARMAssemblerProxy::ARMAssemblerProxy(ARMAssemblerInterface* target) argument
34 : mTarget(target)
43 void ARMAssemblerProxy::setTarget(ARMAssemblerInterface* target) argument
46 mTarget = target;
H A DARMAssemblerProxy.h34 // ARMAssemblerProxy take ownership of the target
37 ARMAssemblerProxy(ARMAssemblerInterface* target);
40 void setTarget(ARMAssemblerInterface* target);
H A Dmips_disassem.c461 print_addr((loc & 0xF0000000) | (i.JType.target << 2));
H A DGGLAssembler.h174 GGLAssembler(ARMAssemblerInterface* target);
H A DGGLAssembler.cpp33 GGLAssembler::GGLAssembler(ARMAssemblerInterface* target) argument
34 : ARMAssemblerProxy(target),
/system/core/include/pixelflinger/
H A 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/
H A Dbuiltins.c366 char *source, *target, *system; local
391 target = args[3];
403 if (mount(tmp, target, system, flags, options) < 0) {
431 if (mount(tmp, target, system, flags, options) < 0) {
451 if (mount(source, target, system, flags, options) < 0) {
/system/core/libpixelflinger/
H A Dpixelflinger.cpp332 static void ggl_texEnvi(void* con, GGLenum target, argument
337 if (target != GGL_TEXTURE_ENV || pname != GGL_TEXTURE_ENV_MODE) {
357 static void ggl_texEnvxv(void* con, GGLenum target, argument
361 if (target != GGL_TEXTURE_ENV) {
367 ggl_texEnvi(con, target, pname, params[0]);
389 GGLenum target,
394 if (target != GGL_TEXTURE_2D) {
388 ggl_texParameteri(void* con, GGLenum target, GGLenum pname, GGLint param) argument
/system/core/fs_mgr/
H A Dfs_mgr.c367 static void check_fs(char *blk_dev, char *type, char *target) argument
390 ret = mount(blk_dev, target, type, tmpmnt_flags, tmpmnt_opts);
392 umount(target);
/system/extras/tests/bionic/libc/
H A DAndroid.mk257 # the shared version will use the target device's C library, while

Completed in 120 milliseconds