Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 79) sorted by relevance

1234

/system/security/keystore-engine/
Drsa_meth.cpp44 int keystore_rsa_priv_enc(int flen, const unsigned char* from, unsigned char* to, RSA* rsa, in keystore_rsa_priv_enc() argument
46 ALOGV("keystore_rsa_priv_enc(%d, %p, %p, %p, %d)", flen, from, to, rsa, padding); in keystore_rsa_priv_enc()
57 if (!RSA_padding_add_PKCS1_type_1(padded.get(), num, from, flen)) { in keystore_rsa_priv_enc()
62 if (!RSA_padding_add_X931(padded.get(), num, from, flen)) { in keystore_rsa_priv_enc()
67 if (!RSA_padding_add_none(padded.get(), num, from, flen)) { in keystore_rsa_priv_enc()
116 int keystore_rsa_priv_dec(int flen, const unsigned char* from, unsigned char* to, RSA* rsa, in keystore_rsa_priv_dec() argument
118 ALOGV("keystore_rsa_priv_dec(%d, %p, %p, %p, %d)", flen, from, to, rsa, padding); in keystore_rsa_priv_dec()
139 int32_t ret = service->sign(String16(reinterpret_cast<const char*>(key_id)), from, in keystore_rsa_priv_dec()
/system/core/toolbox/upstream-netbsd/lib/libc/string/
Dswab.c48 swab(const void * __restrict from, void * __restrict to, ssize_t len) in swab() argument
57 _DIAGASSERT(from != NULL); in swab()
61 fp = (const char *)from; in swab()
/system/core/libpixelflinger/codeflinger/tinyutils/
DVectorImpl.cpp303 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; in _grow() local
305 _do_copy(dest, from, mCount-where); in _grow()
316 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; in _grow() local
317 _do_move_forward(to, from, s); in _grow()
355 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() local
357 _do_copy(dest, from, mCount-(where+amount)); in _shrink()
369 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _shrink() local
370 _do_move_backward(to, from, s); in _shrink()
396 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const in _do_copy() argument
399 do_copy(dest, from, num); in _do_copy()
[all …]
DVectorImpl.h97 virtual void do_copy(void* dest, const void* from, size_t num) const = 0;
99 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0;
100 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0;
118 inline void _do_copy(void* dest, const void* from, size_t num) const;
120 inline void _do_move_forward(void* dest, const void* from, size_t num) const;
121 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
DSortedVector.h128 virtual void do_copy(void* dest, const void* from, size_t num) const;
130 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
131 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
254 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { in do_copy() argument
255 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_copy()
264 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { in do_move_forward() argument
265 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_forward()
269 void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { in do_move_backward() argument
270 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_backward()
DVector.h165 virtual void do_copy(void* dest, const void* from, size_t num) const;
167 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
168 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
328 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const { in do_copy() argument
329 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_copy()
338 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const { in do_move_forward() argument
339 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_forward()
343 void Vector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const { in do_move_backward() argument
344 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num ); in do_move_backward()
/system/core/include/utils/
DSortedVector.h129 virtual void do_copy(void* dest, const void* from, size_t num) const;
131 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
132 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
253 void SortedVector<TYPE>::do_copy(void* dest, const void* from, size_t num) const {
254 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
263 void SortedVector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const {
264 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
268 void SortedVector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const {
269 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
DVectorImpl.h104 virtual void do_copy(void* dest, const void* from, size_t num) const = 0;
106 virtual void do_move_forward(void* dest, const void* from, size_t num) const = 0;
107 virtual void do_move_backward(void* dest, const void* from, size_t num) const = 0;
115 inline void _do_copy(void* dest, const void* from, size_t num) const;
117 inline void _do_move_forward(void* dest, const void* from, size_t num) const;
118 inline void _do_move_backward(void* dest, const void* from, size_t num) const;
DVector.h204 virtual void do_copy(void* dest, const void* from, size_t num) const;
206 virtual void do_move_forward(void* dest, const void* from, size_t num) const;
207 virtual void do_move_backward(void* dest, const void* from, size_t num) const;
399 void Vector<TYPE>::do_copy(void* dest, const void* from, size_t num) const {
400 copy_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
409 void Vector<TYPE>::do_move_forward(void* dest, const void* from, size_t num) const {
410 move_forward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
414 void Vector<TYPE>::do_move_backward(void* dest, const void* from, size_t num) const {
415 move_backward_type( reinterpret_cast<TYPE*>(dest), reinterpret_cast<const TYPE*>(from), num );
/system/extras/tests/mmc_tracepoints/
DREADME1 The code in this directory is used to process data from the mmc tracepoints
19 The mmc_trace_reduce script will take the output from the kernel, and convert it
24 The file mmc_trace_sample_data contains sample mmc trace data from a Nexus 10.
25 It includes read, write and discard entries. The discard entries came from
/system/core/libutils/
DVectorImpl.cpp400 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + where*mItemSize; in _grow() local
402 _do_copy(dest, from, mCount-where); in _grow()
413 const void* from = reinterpret_cast<const uint8_t *>(array) + where*mItemSize; in _grow() local
415 _do_move_forward(to, from, mCount - where); in _grow()
458 … const void* from = reinterpret_cast<const uint8_t *>(mStorage) + (where+amount)*mItemSize; in _shrink() local
460 _do_copy(dest, from, new_size - where); in _shrink()
473 const void* from = reinterpret_cast<uint8_t *>(array) + (where+amount)*mItemSize; in _shrink() local
474 _do_move_backward(to, from, new_size - where); in _shrink()
498 void VectorImpl::_do_copy(void* dest, const void* from, size_t num) const in _do_copy() argument
501 do_copy(dest, from, num); in _do_copy()
[all …]
/system/extras/perfprofd/
Dperf_profile.proto10 // An entry of the map from a stack of addresses to count.
28 // An entry of the map from address_range to count.
56 // Map from a stack of addresses to count.
59 // Map from a range triplet (start, end, to) to count.
72 // A compressed representation of a perf profile, which contains samples from
99 // to first value from /proc/loadavg multiplied by 100 then
/system/core/liblog/
Devent.logtags4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
19 # The data type is a number from the following values:
25 # The data unit is a number taken from the following list:
34 # TODO: generate ".java" and ".h" files with integer constants from this file.
DREADME120 switch from the active logs to the persistent logs from before the last
144 pressure from some chatty application or service in the Android system,
146 To aid in diagnosing the occurence of this, a binary event from liblog
158 Other return codes from writing operation can be returned. Since the
/system/core/logd/
Devent.logtags4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
19 # The data type is a number from the following values:
25 # The data unit is a number taken from the following list:
34 # TODO: generate ".java" and ".h" files with integer constants from this file.
/system/core/libsparse/
Dbacked_block.c144 void backed_block_list_move(struct backed_block_list *from, in backed_block_list_move() argument
151 start = from->data_blocks; in backed_block_list_move()
163 from->last_used = NULL; in backed_block_list_move()
165 if (from->data_blocks == start) { in backed_block_list_move()
166 from->data_blocks = end->next; in backed_block_list_move()
168 for (bb = from->data_blocks; bb; bb = bb->next) { in backed_block_list_move()
Dsparse.c233 static struct backed_block *move_chunks_up_to_len(struct sparse_file *from, in move_chunks_up_to_len() argument
253 start = backed_block_iter_new(from->backed_block_list); in move_chunks_up_to_len()
281 backed_block_split(from->backed_block_list, bb, len - file_len); in move_chunks_up_to_len()
291 backed_block_list_move(from->backed_block_list, in move_chunks_up_to_len()
/system/bt/embdrv/sbc/decoder/include/
Doi_string.h58 #define OI_MemCopy(to, from, size) memcpy((to), (from), (size)) argument
/system/bt/doc/
Dpower_management.md31 we might possibly get into a bad state where we never hear back from the
63 from `bta_dm_conn_srvcs` and no longer be considered for power management
93 #### Events fired from SYS
95 1. An event is fired from one of the methods mentioned above in
115 services for the given `BD_ADDR`, then looks up the ssr values from the
128 `BTA_DM_PM_NO_ACTION`. Only the highest power mode action is chosen from
155 fired from the SYS side of things, except from the initial path they take:
157 1. An event is fired from a callback in BTM to `bta_dm_pm_btm_cback`.
193 #### Events fired from timers
/system/vold/
DMoveTask.h30 MoveTask(const std::shared_ptr<VolumeBase>& from, const std::shared_ptr<VolumeBase>& to);
/system/core/logcat/
Devent.logtags4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
19 # The data type is a number from the following values:
26 # The data unit is a number taken from the following list:
35 # TODO: generate ".java" and ".h" files with integer constants from this file.
/system/extras/perfprofd/quipper/
Dperf_parser.cc42 return (!entry.from && !entry.to); in IsNullBranchStackEntry()
369 << reinterpret_cast<void*>(entry.from) << " -> " in MapBranchStack()
380 if (!MapIPAndPidAndGetNameAndOffset(entry.from, in MapBranchStack()
382 &entry.from, in MapBranchStack()
383 &parsed_entry.from)) { in MapBranchStack()
/system/extras/tests/sdcard/
DREADME26 Download it from the Gnuplot.py web site. Extract to a temp
59 To plot the result from the profiler:
/system/media/camera/docs/
Dhtml.mako19 <!-- automatically generated from html.mako. do NOT edit directly -->
105 from metadata_helpers import md
106 from metadata_helpers import IMAGE_SRC_METADATA
107 from metadata_helpers import filter_tags
108 from metadata_helpers import filter_links
109 from metadata_helpers import wbr
121 # docs with link name from shortname.
/system/core/adb/
DSERVICES.TXT100 Asks the ADB server to forward local connections from <local>
122 fail it there is already a forward connection from <local>.
127 Remove any existing forward local connection from <local>.
135 List all existing forward connections from this server.
182 path from the root of the filesystem.
188 Tries to connect to tcp port <port> on machine <server-name> from
246 socket connections from a device to the host. <forward-command> is one

1234