Searched defs:value (Results 1 - 25 of 100) sorted by relevance

1234

/hardware/samsung_slsi/exynos5/mobicore/daemon/Registry/Public/
H A DMobiCoreRegistry.h50 uint8_t value[]; member in struct:__anon1228
/hardware/libhardware_legacy/vibrator/
H A Dvibrator.c46 char value[20]; local
58 nwr = sprintf(value, "%d\n", timeout_ms);
59 ret = write(fd, value, nwr);
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dsdiovar.h34 int value; member in struct:sdreg
/hardware/qcom/audio/legacy/libalsa-intf/
H A Damix.c55 unsigned value; local
88 mixer_ctl_get(ctl, &value);
H A Dalsaucm_test.c138 " get IDENTIFIER get string value\n"
139 " geti IDENTIFIER get integer value\n"
140 " set IDENTIFIER VALUE set string value\n"
166 char *identifier = NULL, *value = NULL; local
169 command = strtok_r(cmdStr, " ", &value);
170 identifier = strtok_r(NULL, " ", &value);
173 fprintf(stderr, "NULL pointer encountered. Invalid value for command");
191 fprintf(stderr, "NULL pointer encountered. Invalid value for identifier");
283 err = snd_use_case_set(uc_mgr, identifier, value);
285 fprintf(stderr, "%s: error failed to set %s=%s: %d\n", cmd->cmd_str, identifier, value, er
[all...]
/hardware/qcom/display/libhwcomposer/
H A Dhwc_qclient.cpp53 status_t QClient::notifyCallback(uint32_t msg, uint32_t value) { argument
56 securing(value);
59 unsecuring(value);
H A Dhwc.cpp92 // value is reset on every prepare. However, for the layer
329 int param, int* value)
337 value[0] = 0;
342 value[0] = supported;
328 hwc_query(struct hwc_composer_device_1* dev, int param, int* value) argument
/hardware/qcom/display/libqservice/
H A DIQClient.cpp44 virtual status_t notifyCallback(uint32_t msg, uint32_t value) { argument
48 data.writeInt32(value);
66 uint32_t value = data.readInt32(); local
67 notifyCallback(msg, value);
/hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
H A DmcUuid.h41 uint8_t value[16]; /**< Value of the UUID. */ member in struct:__anon1202
44 /** UUID value used as free marker in service provider containers. */
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
H A DJFmContext.java23 private long value = 0; field in class:JFmContext
28 value = INVALID_CONTEXT_VALUE;
32 value = contextValue;
38 return (value == ((JFmContext) otherContextAsObject).getValue());
46 return (int) value;
50 return value;
53 public final void setValue(int value) { argument
54 Log.d("JFmContext()", "setValue: setValue called, value:" + value);
55 this.value
[all...]
H A DJFmTxStatus.java33 private final int value; field in class:JFmTxStatus
35 private JFmTxStatus(int value) { argument
36 this.value = value;
40 return value;
/hardware/qcom/audio/legacy/alsa_sound/
H A DALSAControl.cpp54 status_t ALSAControl::get(const char *name, unsigned int &value, int index) argument
67 mixer_ctl_get(ctl, &value);
71 status_t ALSAControl::set(const char *name, unsigned int value, int index) argument
75 ALOGD("set:: name %s value %d index %d", name, value, index);
87 ret = mixer_ctl_set(ctl, value);
91 status_t ALSAControl::set(const char *name, const char *value) argument
95 ALOGD("set:: name %s value %s", name, value);
107 ret = mixer_ctl_select(ctl, value);
[all...]
H A DALSAStreamOps.cpp242 String8 value; local
245 if (param.get(key, value) == NO_ERROR) {
251 if (param.get(key, value) == NO_ERROR) {
261 if (param.get(key, value) == NO_ERROR) {
264 value = String8();
282 value += (first ? append : String8("|") + append);
289 param.add(key, value);
366 // If the "routes" value does not map to a valid device, the default playback
/hardware/libhardware/tests/camera2/
H A DCameraMetadataTests.cpp99 char value[PROPERTY_VALUE_MAX]; local
100 property_get("ro.build.id", value, "");
101 std::string str_value(value);
/hardware/qcom/msm8960/kernel-headers/media/
H A Dmsm_gestures.h50 void *value; member in struct:msm_ges_ctrl_cmd
H A Dmsm_gemini.h52 void *value; member in struct:msm_gemini_ctrl_cmd
/hardware/qcom/msm8960/original-kernel-headers/media/
H A Dmsm_gestures.h55 void *value; member in struct:msm_ges_ctrl_cmd
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
H A Dperf_config.c232 * <value>, it returns the <value>. Otherwise, it returns NULL
255 /* skip leading spaces before value */
258 /* if reached the end of line, return NULL; otherwise, return value */
266 * Arg2 configuration value
268 * Effects Assigns the value to the configuration member.
274 /* delete any prior value */
281 /* set new value unless it is NULL */
294 * Arg2 configuration value (string)
296 * Effects Assigns the integer value o
345 char const *value = get_value_if_matches(line, argument); local
375 char const *value = get_value_if_matches(line, argument); local
[all...]
/hardware/msm7k/librpc/
H A Dsvc_clnt_common.c112 static bool_t xdr_std_send_uint32(xdr_s_type *xdr, const uint32 *value) argument
115 *(int32 *)(xdr->out_msg + xdr->out_next) = htonl(*value);
120 static bool_t xdr_std_send_int8(xdr_s_type *xdr, const int8 *value) argument
122 uint32 val = *value;
126 static bool_t xdr_std_send_uint8(xdr_s_type *xdr, const uint8 *value) argument
128 uint32 val = *value;
132 static bool_t xdr_std_send_int16(xdr_s_type *xdr, const int16 *value) argument
134 uint32 val = *value;
138 static bool_t xdr_std_send_uint16(xdr_s_type *xdr, const uint16 *value) argument
140 uint32 val = *value;
144 xdr_std_send_int32(xdr_s_type *xdr, const int32 *value) argument
193 xdr_std_recv_uint32(xdr_s_type *xdr, uint32 *value) argument
217 xdr_std_recv_int8(xdr_s_type *xdr, int8 *value) argument
222 xdr_std_recv_uint8(xdr_s_type *xdr, uint8 *value) argument
227 xdr_std_recv_int16(xdr_s_type *xdr, int16 *value) argument
232 xdr_std_recv_uint16(xdr_s_type *xdr, uint16 *value) argument
239 xdr_std_recv_int32(xdr_s_type *xdr, int32 *value) argument
[all...]
/hardware/ti/omap3/dspbridge/inc/
H A Ddynamic_loader.h233 LDR_ADDR value; member in struct:dynload_symbol
/hardware/broadcom/libbt/src/
H A Dupio.c71 * This value is correlative(shorter) to the in-activity timeout period set in
72 * the bluesleep LPM code. The current value used in bluesleep is 10sec.
121 char value[PROPERTY_VALUE_MAX]; local
123 property_get("ro.kernel.qemu", value, "0");
124 UPIODBG("is_emulator_context : %s", value);
125 if (strcmp(value, "1") == 0) {
133 char value[PROPERTY_VALUE_MAX]; local
135 property_get("ro.rfkilldisabled", value, "0");
136 UPIODBG("is_rfkill_disabled ? [%s]", value);
138 if (strcmp(value, "
[all...]
/hardware/libhardware/include/hardware/
H A Dbt_gatt_server.h27 /** GATT value type used in response to remote read requests */
30 uint8_t value[BTGATT_MAX_ATTR_LEN]; member in struct:__anon191
95 bool need_rsp, bool is_prep, uint8_t* value);
163 /** Send value indication to a remote device */
/hardware/libhardware_legacy/audio/
H A DAudioHardwareGeneric.cpp292 String8 value; local
295 if (param.get(key, value) == NO_ERROR) {
400 String8 value; local
403 if (param.get(key, value) == NO_ERROR) {
/hardware/qcom/display/liblight/
H A Dlights.c82 write_int(char const* path, int value) argument
90 int bytes = sprintf(buffer, "%d\n", value);
/hardware/qcom/media/mm-video/vidc/vdec/src/
H A Dmp4_utils.cpp62 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size); local
71 return value;
90 uint8 VerID = 1; /* default value */

Completed in 743 milliseconds

1234