Home
last modified time | relevance | path

Searched refs:where (Results 1 – 25 of 136) sorted by relevance

123456

/system/core/libutils/
DVectorImpl.cpp130 void* where = _grow(index, length); in insertArrayAt() local
131 if (where) { in insertArrayAt()
132 _do_copy(where, array, length); in insertArrayAt()
134 return where ? index : (ssize_t)NO_MEMORY; in insertArrayAt()
151 void* where = _grow(index, numItems); in insertAt() local
152 if (where) { in insertAt()
154 _do_splat(where, item, numItems); in insertAt()
156 _do_construct(where, numItems); in insertAt()
159 return where ? index : (ssize_t)NO_MEMORY; in insertAt()
379 void* VectorImpl::_grow(size_t where, size_t amount) in _grow() argument
[all …]
/system/core/libutils/include/utils/
DVectorImpl.h76 ssize_t insertAt(size_t where, size_t numItems = 1);
77 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
110 void* _grow(size_t where, size_t amount);
111 void _shrink(size_t where, size_t amount);
172 ssize_t insertAt(size_t where, size_t numItems = 1);
173 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
DTypeHelpers.h173 void splat_type(TYPE* where, const TYPE* what, size_t n) {
177 new(where) TYPE(*what);
178 where++;
183 *where++ = *what;
/system/core/libpixelflinger/
Draster.cpp146 GGLint gglBitBlit(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4]) in gglBitBlit()
150 GGLint x = where[0]; in gglBitBlit()
151 GGLint y = where[1]; in gglBitBlit()
152 GGLint w = where[2]; in gglBitBlit()
153 GGLint h = where[3]; in gglBitBlit()
/system/ca-certificates/
DREADME.cacerts2 where "hash" is the subject hash produced by:
/system/chre/host/
DREADME.md3 applications processor, as opposed to the Android build perspective, where host
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/
Dbuild.gradle1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/
Dbuild.gradle1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
/system/extras/simpleperf/demo/SimpleperfExampleOfKotlin/
Dbuild.gradle1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
/system/sepolicy/private/
Dattributes6 # and to start removing domain_deprecated where it's not required or
Dinit.te18 # case where logpersistd is actually logcat -f in logd context (nee: logcatd)
/system/sepolicy/prebuilts/api/26.0/private/
Dattributes6 # and to start removing domain_deprecated where it's not required or
Dinit.te17 # case where logpersistd is actually logcat -f in logd context (nee: logcatd)
/system/sepolicy/prebuilts/api/26.0/public/
Ddex2oat.te16 # Read symlinks in /data/dalvik-cache. This is required for PIC mode boot images, where
54 # where the oat file is symlinked to the original file in /system.
Dpostinstall.te1 # Domain where the postinstall program runs during the update.
/system/sepolicy/public/
Ddex2oat.te16 # Read symlinks in /data/dalvik-cache. This is required for PIC mode boot images, where
54 # where the oat file is symlinked to the original file in /system.
Dpostinstall.te1 # Domain where the postinstall program runs during the update.
Dperfprofd.te11 # perfevents problems in cases where CPU goes on/off during measurement;
/system/extras/bootctl/
Dbootctl.cpp30 static void usage(FILE* where, int /* argc */, char* argv[]) in usage() argument
32 fprintf(where, in usage()
/system/core/adb/
Dprotocol.txt46 detail. Their format is COMMAND(arg0, arg1, payload) where the payload
78 where systemtype is "bootloader", "device", or "host", serialno is some
90 AUTH packet where type is SIGNATURE(2) and data is the signature. If the
98 AUTH packet where type is RSAPUBLICKEY(3) and data is the public key. If
141 The local-id is ignored on all but the first READY message (where it
268 succeeds. A future version may want to do some level of windowing where
Dsysdeps.h132 extern int adb_lseek(int fd, int pos, int where);
483 static __inline__ int adb_lseek(int fd, int pos, int where) in adb_lseek() argument
485 return lseek(fd, pos, where); in adb_lseek()
DSYNC.TXT66 When the file is transferred a sync request "DONE" is sent, where length is set
79 When the file is transferred a sync response "DONE" is retrieved where the
/system/extras/perfprofd/tests/
DREADME.txt5 (where runtest == $ANDROID_BUILD_TOP"/development/testrunner/runtest.py).
/system/core/logcat/
Devent.logtags79 50000 menu_item_selected (Menu type where 0 is options and 1 is context|1|5),(Menu item title|3)
80 50001 menu_opened (Menu type where 0 is options and 1 is context|1|5)
/system/extras/ioshark/
DREADME16 the host where the script runs, compiles and packages up the bytecode

123456