Searched refs:in (Results 1 - 25 of 103) sorted by relevance

12345

/system/core/fastboot/
H A Dp12topem.sh9 openssl pkcs12 -passin pass:"$2" -passout pass:"$2" -in $1.p12 -out $1.pem
H A Dgenkey.sh20 openssl pkcs12 -export -in $1-cert.pem -inkey $1.pem -passin pass:"$2" \
/system/core/toolbox/
H A Ddd.c11 * Redistribution and use in source and binary forms, with or without
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
85 extern IO in, out;
107 IO in, out; /* input/output state */ variable
157 if (in.name == NULL) {
158 in.name = "stdin";
159 in.fd = STDIN_FILENO;
161 in.fd = open(in
[all...]
/system/core/libsparse/
H A Dimg2simg.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
48 int in; local
71 in = STDIN_FILENO;
73 in = open(argv[1], O_RDONLY | O_BINARY);
74 if (in < 0) {
90 len = lseek64(in, 0, SEEK_END);
91 lseek64(in, 0, SEEK_SET);
100 ret = sparse_file_read(s, in, false, false);
112 close(in);
[all...]
H A Dsimg2img.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
40 int in; local
59 in = STDIN_FILENO;
61 in = open(argv[i], O_RDONLY | O_BINARY);
62 if (in < 0) {
68 s = sparse_file_import(in, true, false);
82 close(in);
H A Dsimg2simg.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
44 int in; local
61 in = open(argv[1], O_RDONLY | O_BINARY);
62 if (in < 0) {
67 s = sparse_file_import(in, true, false);
112 close(in);
/system/netd/
H A DResolverController.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
20 #include <netinet/in.h>
21 #include <linux/in.h>
H A DPppController.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
20 #include <linux/in.h>
H A DSoftapController.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
20 #include <linux/in.h>
/system/core/cpio/
H A Dmkbootfs.c45 /* Each line in the canned file should be a path plus three ints (uid,
80 // Use the compiled-in fs_config() function.
88 // Nothing is special about this value, just picked something in the
148 static void _archive(char *in, char *out, int ilen, int olen);
154 static void _archive_dir(char *in, char *out, int ilen, int olen) argument
162 in, out, ilen, olen);
165 d = opendir(in);
166 if(d == 0) die("cannot open directory '%s'", in);
205 in[ilen] = '/';
206 memcpy(in
225 _archive(char *in, char *out, int ilen, int olen) argument
270 char in[8192]; local
[all...]
/system/media/camera/docs/
H A Dcamera_metadata_tag_info.mako6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
24 * Array assignments are done using specified-index syntax to keep things in
35 % for i in find_all_sections(metadata):
41 % for i in find_all_sections(metadata):
47 % for sec in find_all_sections(metadata):
50 % for entry in find_unique_entries(sec):
59 % for i in find_all_sections(metadata):
72 % for sec in find_all_sections(metadata):
73 % for idx,entry in enumerat
[all...]
H A Dcamera_metadata_tags.mako6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
30 /** TODO: Nearly every enum in this file needs a description */
39 % for i in find_all_sections(metadata):
48 * Hierarchy positions in enum space. All vendor extension tags must be
52 % for i in find_all_sections(metadata):
65 % for sec in find_all_sections(metadata):
66 % for idx,entry in enumerate(find_unique_entries(sec)):
82 % for sec in find_all_sections(metadata):
83 % for entry in find_unique_entrie
[all...]
H A Dmetadata_template.mako6 you may not use this file except in compliance with the License.
11 Unless required by applicable law or agreed to in writing, software
23 % for tag in metadata.tags:
32 % for root in metadata.outer_namespaces:
34 % for section in root.sections:
41 % for kind in section.kinds: # dynamic,static,controls
45 % for nested in node.namespaces:
49 % for entry in node.entries:
68 % for tag in prop.tags:
88 % for size in pro
[all...]
H A Dmetadata-generate7 # you may not use this file except in compliance with the License.
12 # Unless required by applicable law or agreed to in writing, software
33 local in=$thisdir/$1
36 python $thisdir/metadata_parser_xml.py $thisdir/metadata_properties.xml $in $out
H A Dhtml.mako7 you may not use this file except in compliance with the License.
12 Unless required by applicable law or agreed to in writing, software
66 supposedly there is a bug in chrome that it lays out tables before
84 for words in text.split(" "):
87 new_word = "".join([addwbr(i) for i in words])
92 for i in replace_chars:
111 % for section in metadata.find_all(lambda x: isinstance(x, metadata_model.Section)):
114 % for prop in section.find_all(lambda x: isinstance(x, metadata_model.Entry)):
137 % for root in metadata.outer_namespaces:
139 % for section in roo
[all...]
/system/media/audio_utils/include/audio_utils/
H A Dprimitives.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
90 * Multiply-accumulate 16-bit terms with 32-bit result: return a + in*v.
93 int32_t mulAdd(int16_t in, int16_t v, int32_t a) argument
97 asm( "smlabb %[out], %[in], %[v], %[a] \n"
99 : [in]"%r"(in), [v]"r"(v), [a]"r"(a)
103 return a + in * (int32_t)v;
108 * Multiply 16-bit terms with 32-bit result: return in*v.
111 int32_t mul(int16_t in, int16_ argument
[all...]
/system/extras/tests/fstest/
H A Dmounts-test.sh12 for i in nosuid noexec
22 for i in mem kmem
/system/extras/tests/ext4/
H A Dandroid_emmc_perf_tests.sh17 case "$HARDWARE" in
94 for I in 1 2 3
102 for I in 1 2 3
114 # in the first 6 Gbytes. That is way more memory than any device we currently
123 for I in 1 2 3
132 for I in 1 2 3
140 for I in 1 2 3
147 for I in 1 2 3
/system/core/init/
H A Dgrab-bootchart.sh17 for f in $FILES; do
/system/extras/libublock/
H A Dublock.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
69 const void *in, size_t in_len,
76 assert(in);
82 in_h = (const struct ublock_init_in *)in;
105 const void *in, size_t in_len,
111 assert(in);
125 const void *in, size_t in_len,
133 assert(in);
139 in_h = (const struct ublock_read_in *)in;
68 ublock_handle_init(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
104 ublock_handle_ready(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
124 ublock_handle_read(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
154 ublock_handle_write(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
180 ublock_handle_request(struct ublock_ctx *ub_ctx, const void *in, size_t in_len, void *out, size_t *out_len) argument
[all...]
/system/core/libmincrypt/tools/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/system/extras/ext4_utils/
H A Dmkuserimg.sh3 # To call this script, make sure make_ext4fs is somewhere in PATH
12 echo "in mkuserimg.sh PATH=$PATH"
37 case $EXT_VARIANT in
/system/extras/latencytop/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/system/extras/libpagemap/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/system/extras/librank/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software

Completed in 223 milliseconds

12345