Searched refs:val (Results 26 - 45 of 45) sorted by relevance

12

/system/core/libsparse/
H A Dbacked_block.c43 uint32_t val; member in struct:backed_block::__anon460::__anon464
106 return bb->fill.val;
219 if (a->fill.val != b->fill.val) {
299 bb->fill.val = fill_val;
/system/core/sh/
H A Dexpand.c610 char *val; local
629 val = NULL;
631 val = lookupvar(var);
632 if (val == NULL || ((varflags & VSNUL) && val[0] == '\0')) {
633 val = NULL;
668 for (;*val; val++)
671 while (*val) {
672 if (quotes && syntax[(int)*val]
1495 casematch(union node *pattern, char *val) argument
[all...]
H A Dexec.c992 out1fmt("%s\n", ap->val);
H A Dparser.c756 pushstring(ap->val, strlen(ap->val), ap);
H A Dinit.c1065 optlist[i].val = 0;
/system/core/init/
H A Dlogo.c33 void android_memset16(void *_ptr, unsigned short val, unsigned count) argument
38 *ptr++ = val;
H A Dinit.c106 int add_environment(const char *key, const char *val) argument
112 size_t len = strlen(key) + strlen(val) + 2;
114 snprintf(entry, len, "%s=%s", key, val);
149 char val[64]; local
154 snprintf(val, sizeof(val), "%d", fd);
155 add_environment(key, val);
/system/extras/ext4_utils/
H A Dcontents.c268 char *val; local
287 val = (char *)entry + min_offs - size;
289 memset(val + size - EXT4_XATTR_PAD, 0, EXT4_XATTR_PAD);
290 memcpy(val, secon, value_len);
/system/core/liblog/
H A Devent_tag_map.c338 unsigned long val; local
345 val = strtoul(startp, &endp, 10);
350 tag->tagIndex = val;
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_rwlock.c106 #define TEXPECT_INT(cond,val) \
107 { int _ret = (cond); if (_ret != (val)) PANIC("%d:%s returned %d (%d expected)", __LINE__, #cond, _ret, (val)); }
H A Dtest_pthread_mutex.c107 #define TEXPECT_INT(cond,val) \
108 { int _ret = (cond); if (_ret != (val)) PANIC("%d:%s returned %d (%d expected)", __LINE__, #cond, _ret, (val)); }
/system/core/fastboot/
H A Dengine.c433 const char *val; local
438 const char *val = value[n]; local
439 int len = strlen(val);
442 if ((len > 1) && (val[len-1] == '*')) {
444 match = !strncmp(val, str, len);
446 match = !strcmp(val, str);
/system/core/include/private/pixelflinger/
H A Dggl_context.h142 #define GGL_BUILD_NEEDS(val, name) \
143 (((val)<<(GGL_NEEDS_##name##_SHIFT)) & GGL_NEEDS_##name##_MASK)
149 #define GGL_NEED(name, val) GGL_BUILD_NEEDS(val, name)
/system/bluetooth/bluez-clean-headers/bluetooth/
H A Dl2cap.h145 uint8_t val[0]; member in struct:__anon255
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp860 static uint32_t find_bottom(uint32_t val) argument
863 while (!(val & (3<<i)))
868 static void normalize(uint32_t& val, uint32_t& rot) argument
871 while (!(val&3) || (val & 0xFC000000)) {
873 newval = val >> 2;
874 newval |= (val&3) << 30;
875 val = newval;
/system/core/toolbox/
H A Dnewfs_msdos.c938 ckgeom(const char *fname, u_int val, const char *msg) argument
940 if (!val)
942 if (val > MAXU16)
943 errx(1, "%s: illegal %s %d", fname, msg, val);
944 return val;
/system/extras/tests/sdcard/
H A Dplot_sdcard.py315 for flag, val in optlist:
/system/netd/
H A DCommandListener.cpp287 int val = 0; local
292 rc = ThrottleController::getInterfaceRxThrottle(argv[2], &val);
294 rc = ThrottleController::getInterfaceTxThrottle(argv[2], &val);
301 asprintf(&msg, "%u", val);
/system/security/keystore/
H A Dkeystore.cpp952 static ResponseCode insert(KeyStore* keyStore, int, uid_t uid, Value* keyName, Value* val, argument
956 Blob keyBlob(val->value, val->length, NULL, 0, TYPE_GENERIC);
/system/core/charger/
H A Dcharger.c272 static int read_file_int(const char *path, int *val) argument
288 *val = tmp;

Completed in 1542 milliseconds

12