/third_party/typescript/tests/baselines/reference/ |
H A D | privateNamesInGenericClasses.js | 6 set #prop(value : T) { this.#foo = value; } 35 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
37 var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
41 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
59 _C_foo = new WeakMap(), _C_instances = new WeakSet(), _C_method = function _C_method() { return __classPrivateFieldGet(this, _C_foo, "f"); }, _C_prop_get = function _C_prop_get() { return __classPrivateFieldGet(this, _C_foo, "f"); }, _C_prop_set = function _C_prop_set(value) { __classPrivateFieldSe [all...] |
H A D | importCallExpressionAsyncES6UMD.js | 33 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
36 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
37 function step(result) { result.done ? resolve(result.value) : adopt(result.value) [all...] |
H A D | infiniteConstraints.js | 18 declare function value<V extends string>(val: V): Value<V>; 28 const noError = ensureNoDuplicates({main: value("test"), alternate: value("test2")}); 30 const shouldBeNoError = ensureNoDuplicates({main: value("test")}); 32 const shouldBeError = ensureNoDuplicates({main: value("dup"), alternate: value("dup")}); 57 var noError = ensureNoDuplicates({ main: value("test"), alternate: value("test2") });
58 var shouldBeNoError = ensureNoDuplicates({ main: value("test") });
59 var shouldBeError = ensureNoDuplicates({ main: value("du [all...] |
/third_party/spirv-tools/tools/link/ |
H A D | linker.cpp | 96 if (flags::h.value() || flags::help.value()) { in main() 101 if (flags::version.value()) { in main() 117 if (!spvParseTargetEnv(flags::target_env.value().c_str(), &target_env)) { in main() 119 flags::target_env.value().c_str()); in main() 124 flags::o.value().empty() ? "out.spv" : flags::o.value(); in main() 128 options.SetAllowPartialLinkage(flags::allow_partial_linkage.value()); in main() 129 options.SetCreateLibrary(flags::create_library.value()); in main() 130 options.SetVerifyIds(flags::verify_ids.value()); in main() [all...] |
/base/global/i18n/frameworks/zone/src/ |
H A D | zone_util.cpp | 343 xmlNodePtr value;
in GetCountryZones() local 346 value = cur->xmlChildrenNode;
in GetCountryZones() 347 if (xmlStrcmp(value->name, reinterpret_cast<const xmlChar*>(CODE_TAG)) != 0) {
in GetCountryZones() 352 xmlChar *codePtr = xmlNodeGetContent(value);
in GetCountryZones() 368 value = value->next;
in GetCountryZones() 369 GetDefaultAndBoost(value, defaultTimzone, isBoosted, zones);
in GetCountryZones() 375 void ZoneUtil::GetDefaultAndBoost(xmlNodePtr &value, std::string &defaultTimezone, bool &isBoosted,
in GetDefaultAndBoost() argument 378 if (value == nullptr || xmlStrcmp(value in GetDefaultAndBoost() 401 GetTimezones(xmlNodePtr &value, std::vector<std::string> &zones) GetTimezones() argument [all...] |
/base/security/device_auth/common_lib/impl/src/ |
H A D | json_utils.c | 250 int32_t GetIntFromJson(const CJson *jsonObj, const char *key, int32_t *value)
in GetIntFromJson() argument 252 if (jsonObj == NULL || key == NULL || value == NULL) {
in GetIntFromJson() 258 *value = (int)cJSON_GetNumberValue(jsonObjTmp);
in GetIntFromJson() 266 int32_t ret = GetIntFromJson(item, key, value);
in GetIntFromJson() 276 int32_t GetUnsignedIntFromJson(const CJson *jsonObj, const char *key, uint32_t *value)
in GetUnsignedIntFromJson() argument 278 if (jsonObj == NULL || key == NULL || value == NULL) {
in GetUnsignedIntFromJson() 287 *value = (uint32_t)tmpValue;
in GetUnsignedIntFromJson() 289 *value = (uint32_t)realValue;
in GetUnsignedIntFromJson() 298 int32_t ret = GetUnsignedIntFromJson(item, key, value);
in GetUnsignedIntFromJson() 308 int32_t GetInt64FromJson(const CJson *jsonObj, const char *key, int64_t *value)
in GetInt64FromJson() argument 318 GetBoolFromJson(const CJson *jsonObj, const char *key, bool *value) GetBoolFromJson() argument 417 AddStringToJson(CJson *jsonObj, const char *key, const char *value) AddStringToJson() argument 469 AddBoolToJson(CJson *jsonObj, const char *key, bool value) AddBoolToJson() argument 494 AddIntToJson(CJson *jsonObj, const char *key, int value) AddIntToJson() argument 519 AddInt64StringToJson(CJson *jsonObj, const char *key, int64_t value) AddInt64StringToJson() argument [all...] |
/base/security/device_auth/test/unittest/deviceauth/source/ |
H A D | json_utils_mock.c | 283 int32_t GetIntFromJson(const CJson *jsonObj, const char *key, int32_t *value) in GetIntFromJson() argument 285 if (jsonObj == NULL || key == NULL || value == NULL) { in GetIntFromJson() 291 *value = (int)cJSON_GetNumberValue(jsonObjTmp); in GetIntFromJson() 299 int32_t ret = GetIntFromJson(item, key, value); in GetIntFromJson() 309 int32_t GetUnsignedIntFromJson(const CJson *jsonObj, const char *key, uint32_t *value) in GetUnsignedIntFromJson() argument 311 if (jsonObj == NULL || key == NULL || value == NULL) { in GetUnsignedIntFromJson() 320 *value = (uint32_t)tmpValue; in GetUnsignedIntFromJson() 322 *value = (uint32_t)realValue; in GetUnsignedIntFromJson() 331 int32_t ret = GetUnsignedIntFromJson(item, key, value); in GetUnsignedIntFromJson() 341 int32_t GetInt64FromJson(const CJson *jsonObj, const char *key, int64_t *value) in GetInt64FromJson() argument 351 GetBoolFromJson(const CJson *jsonObj, const char *key, bool *value) GetBoolFromJson() argument 450 AddStringToJson(CJson *jsonObj, const char *key, const char *value) AddStringToJson() argument 502 AddBoolToJson(CJson *jsonObj, const char *key, bool value) AddBoolToJson() argument 527 AddIntToJson(CJson *jsonObj, const char *key, int value) AddIntToJson() argument 552 AddInt64StringToJson(CJson *jsonObj, const char *key, int64_t value) AddInt64StringToJson() argument [all...] |
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/include/ |
H A D | hi_types_base.h | 359 #define hi_byte_align(value, align) (((value) + (align) - 1) & (~((align) -1))) 360 #define hi_is_byte_align(value, align) (((hi_u32)(value) & ((align) - 1))== 0) 361 #define hi_inc_wraparound(value, round_size) ++(value); (value) &= ((round_size) - 1) 362 #define hi_dec_wraparound(value, round_size) --(value); (value) [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/ |
H A D | hi_types_base.h | 356 #define hi_byte_align(value, align) (((value) + (align) - 1) & (~((align) -1))) 357 #define hi_is_byte_align(value, align) (((hi_u32)(value) & ((align) - 1))== 0) 358 #define hi_inc_wraparound(value, round_size) ++(value); (value) &= ((round_size) - 1) 359 #define hi_dec_wraparound(value, round_size) --(value); (value) [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-ixp4xx/include/mach/ |
H A D | io.h | 78 static inline void __indirect_writeb(u8 value, volatile void __iomem *p) in __indirect_writeb() argument 84 __raw_writeb(value, p); in __indirect_writeb() 90 data = value << (8*n); in __indirect_writeb() 103 static inline void __indirect_writew(u16 value, volatile void __iomem *p) in __indirect_writew() argument 109 __raw_writew(value, p); in __indirect_writew() 115 data = value << (8*n); in __indirect_writew() 128 static inline void __indirect_writel(u32 value, volatile void __iomem *p) in __indirect_writel() argument 133 __raw_writel(value, p); in __indirect_writel() 137 ixp4xx_pci_write(addr, NP_CMD_MEMWRITE, value); in __indirect_writel() 246 static inline void outb(u8 value, u3 argument 265 outw(u16 value, u32 addr) outw() argument 283 outl(u32 value, u32 addr) outl() argument 448 iowrite8(u8 value, void __iomem *addr) iowrite8() argument 477 iowrite16(u16 value, void __iomem *addr) iowrite16() argument 506 iowrite32(u32 value, void __iomem *addr) iowrite32() argument [all...] |
/kernel/linux/linux-5.10/drivers/misc/habanalabs/common/ |
H A D | hwmon.c | 312 int sensor_index, u32 attr, long *value) in hl_get_temperature() 325 0, value); in hl_get_temperature() 331 *value = 0; in hl_get_temperature() 338 int sensor_index, u32 attr, long value) in hl_set_temperature() 349 pkt.value = __cpu_to_le64(value); in hl_set_temperature() 363 int sensor_index, u32 attr, long *value) in hl_get_voltage() 376 0, value); in hl_get_voltage() 382 *value = 0; in hl_get_voltage() 389 int sensor_index, u32 attr, long *value) in hl_get_current() 311 hl_get_temperature(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_temperature() argument 337 hl_set_temperature(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_temperature() argument 362 hl_get_voltage(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_voltage() argument 388 hl_get_current(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_current() argument 414 hl_get_fan_speed(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_fan_speed() argument 440 hl_get_pwm_info(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_pwm_info() argument 466 hl_set_pwm_info(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_pwm_info() argument 489 hl_set_voltage(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_voltage() argument 514 hl_set_current(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_current() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/fw/ |
H A D | acpi.c | 138 * Evaluate a DSM with no arguments and a single u8 return value (inside a 139 * buffer object), verify and return that value. 200 data->package.elements[0].integer.value > 1) { in iwl_acpi_get_wifi_pkg() 205 *tbl_rev = data->package.elements[0].integer.value; in iwl_acpi_get_wifi_pkg() 220 domain->integer.value == ACPI_WIFI_DOMAIN) in iwl_acpi_get_wifi_pkg() 257 enabled = !!wifi_pkg->package.elements[1].integer.value; in iwl_acpi_get_tas() 267 wifi_pkg->package.elements[2].integer.value > in iwl_acpi_get_tas() 270 wifi_pkg->package.elements[1].integer.value); in iwl_acpi_get_tas() 274 *block_list_size = wifi_pkg->package.elements[2].integer.value; in iwl_acpi_get_tas() 278 IWL_DEBUG_RADIO(fwrt, "TAS invalid array size value in iwl_acpi_get_tas() 668 u8 *value; iwl_sar_geo_init() local [all...] |
/kernel/linux/linux-5.10/sound/usb/line6/ |
H A D | pcm.c | 25 uinfo->value.integer.min = 0; in snd_line6_impulse_volume_info() 26 uinfo->value.integer.max = 255; in snd_line6_impulse_volume_info() 35 ucontrol->value.integer.value[0] = line6pcm->impulse_volume; in snd_line6_impulse_volume_get() 43 int value = ucontrol->value.integer.value[0]; in snd_line6_impulse_volume_put() local 46 if (line6pcm->impulse_volume == value) in snd_line6_impulse_volume_put() 49 line6pcm->impulse_volume = value; in snd_line6_impulse_volume_put() 50 if (value > in snd_line6_impulse_volume_put() 86 int value = ucontrol->value.integer.value[0]; snd_line6_impulse_period_put() local [all...] |
/kernel/linux/linux-6.6/sound/usb/line6/ |
H A D | pcm.c | 25 uinfo->value.integer.min = 0; in snd_line6_impulse_volume_info() 26 uinfo->value.integer.max = 255; in snd_line6_impulse_volume_info() 35 ucontrol->value.integer.value[0] = line6pcm->impulse_volume; in snd_line6_impulse_volume_get() 43 int value = ucontrol->value.integer.value[0]; in snd_line6_impulse_volume_put() local 46 if (line6pcm->impulse_volume == value) in snd_line6_impulse_volume_put() 49 line6pcm->impulse_volume = value; in snd_line6_impulse_volume_put() 50 if (value > in snd_line6_impulse_volume_put() 86 int value = ucontrol->value.integer.value[0]; snd_line6_impulse_period_put() local [all...] |
/third_party/gn/src/base/strings/ |
H A D | string_number_conversions.cc | 26 static STR IntToString(INT value) { in IntToString() 40 CheckedNumeric<INT>(value).UnsignedAbs().ValueOrDie(); in IntToString() 50 if (IsValueNegative(value)) { in IntToString() 311 std::string NumberToString(int value) { in NumberToString() argument 312 return IntToStringT<std::string, int>::IntToString(value); in NumberToString() 315 std::u16string NumberToString16(int value) { in NumberToString16() argument 316 return IntToStringT<std::u16string, int>::IntToString(value); in NumberToString16() 319 std::string NumberToString(unsigned value) { in NumberToString() argument 320 return IntToStringT<std::string, unsigned>::IntToString(value); in NumberToString() 323 std::u16string NumberToString16(unsigned value) { in NumberToString16() argument 327 NumberToString(long value) NumberToString() argument 331 NumberToString16(long value) NumberToString16() argument 335 NumberToString(unsigned long value) NumberToString() argument 339 NumberToString16(unsigned long value) NumberToString16() argument 343 NumberToString(long long value) NumberToString() argument 347 NumberToString16(long long value) NumberToString16() argument 351 NumberToString(unsigned long long value) NumberToString() argument 355 NumberToString16(unsigned long long value) NumberToString16() argument [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | clear.c | 256 * Return INVALID_MASK if the drawbuffer value is invalid. 266 * specified by passing i as the parameter drawbuffer, and value in make_color_buffer_mask() 271 * value. in make_color_buffer_mask() 347 const GLint *value, bool no_error) in clear_bufferiv() 367 * value of MAX DRAW BUFFERS minus one; or if buffer is DEPTH, in clear_bufferiv() 377 /* Save current stencil clear value, set to 'value', do the in clear_bufferiv() 378 * stencil clear and restore the clear value. in clear_bufferiv() 383 ctx->Stencil.Clear = *value; in clear_bufferiv() 402 COPY_4V(ctx->Color.ClearColor.i, value); in clear_bufferiv() 346 clear_bufferiv(struct gl_context *ctx, GLenum buffer, GLint drawbuffer, const GLint *value, bool no_error) clear_bufferiv() argument 427 _mesa_ClearBufferiv_no_error(GLenum buffer, GLint drawbuffer, const GLint *value) _mesa_ClearBufferiv_no_error() argument 435 _mesa_ClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value) _mesa_ClearBufferiv() argument 448 _mesa_ClearNamedFramebufferiv(GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value) _mesa_ClearNamedFramebufferiv() argument 465 clear_bufferuiv(struct gl_context *ctx, GLenum buffer, GLint drawbuffer, const GLuint *value, bool no_error) clear_bufferuiv() argument 520 _mesa_ClearBufferuiv_no_error(GLenum buffer, GLint drawbuffer, const GLuint *value) _mesa_ClearBufferuiv_no_error() argument 529 _mesa_ClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value) _mesa_ClearBufferuiv() argument 542 _mesa_ClearNamedFramebufferuiv(GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value) _mesa_ClearNamedFramebufferuiv() argument 559 clear_bufferfv(struct gl_context *ctx, GLenum buffer, GLint drawbuffer, const GLfloat *value, bool no_error) clear_bufferfv() argument 654 _mesa_ClearBufferfv_no_error(GLenum buffer, GLint drawbuffer, const GLfloat *value) _mesa_ClearBufferfv_no_error() argument 663 _mesa_ClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value) _mesa_ClearBufferfv() argument 676 _mesa_ClearNamedFramebufferfv(GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value) _mesa_ClearNamedFramebufferfv() argument [all...] |
/third_party/node/deps/v8/include/cppgc/internal/ |
H A D | write-barrier.h | 63 // Returns the required write barrier for a given `slot` and `value`. 64 static V8_INLINE Type GetWriteBarrierType(const void* slot, const void* value, 70 // Returns the required write barrier for a given `value`. 71 static V8_INLINE Type GetWriteBarrierType(const void* value, Params& params); 114 static void DijkstraMarkingBarrierSlow(const void* value); 115 static void DijkstraMarkingBarrierSlowWithSentinelCheck(const void* value); 121 static void SteeleMarkingBarrierSlow(const void* value); 122 static void SteeleMarkingBarrierSlowWithSentinelCheck(const void* value); 149 static V8_INLINE WriteBarrier::Type Get(const void* slot, const void* value, in Get() argument 152 return ValueModeDispatch<value_mode>::Get(slot, value, param in Get() 156 Get(const void* value, WriteBarrier::Params& params, HeapHandleCallback callback) Get() argument 166 GetNoSlot(const void* value, WriteBarrier::Params& params, HeapHandleCallback) GetNoSlot() argument 181 TryGetCagedHeap(const void* slot, const void* value, WriteBarrier::Params& params) TryGetCagedHeap() argument 275 Get(const void* slot, const void* value, WriteBarrier::Params& params, HeapHandleCallback callback) Get() argument 282 Get(const void* value, WriteBarrier::Params& params, HeapHandleCallback callback) Get() argument 342 GetWriteBarrierType( const void* slot, const void* value, WriteBarrier::Params& params) GetWriteBarrierType() argument 358 GetWriteBarrierType( const void* value, WriteBarrier::Params& params) GetWriteBarrierType() argument [all...] |
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | var.rs | 42 /// The value of the variable, that needs to be suitable for `ty`. 72 /// The value of this constant variable, if any. 118 fn default_macro_constant_type(ctx: &BindgenContext, value: i64) -> IntKind { in default_macro_constant_type() 119 if value < 0 || in default_macro_constant_type() 123 if value < i32::min_value() as i64 || value > i32::max_value() as i64 { in default_macro_constant_type() 126 value < i16::min_value() as i64 || in default_macro_constant_type() 127 value > i16::max_value() as i64 in default_macro_constant_type() 130 } else if value < i8::min_value() as i64 || in default_macro_constant_type() 131 value > i in default_macro_constant_type() 407 let mut value = None; get_integer_literal_from_cursor() variables [all...] |
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | generate_android_bp.py | 37 def has_child_values(value): 40 if isinstance(value, list): 41 return len(value) > 0 42 if isinstance(value, dict): 43 for (item, item_value) in value.items(): 48 # This is a value leaf node 52 def write_blueprint_key_value(output, name, value, indent=1): 53 if not has_child_values(value): 56 if isinstance(value, set) or isinstance(value, lis [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | optional.h | 75 template <typename T, bool unused = std::is_trivially_destructible<T>::value> 174 bool unused = absl::is_trivially_copy_constructible<T>::value&& 176 T>::type>::value&& std::is_trivially_destructible<T>::value> 214 absl::default_allocator_is_nothrow::value || 215 std::is_nothrow_move_constructible<T>::value) 232 std::is_nothrow_move_assignable<T>::value&& in noexcept() 233 std::is_nothrow_move_constructible<T>::value) { in noexcept() 318 std::is_copy_constructible<T>::value 320 : std::is_move_constructible<T>::value [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | compressed_tuple_test.cc | 34 constexpr CallType value() const& { return CallType::kConstRef; } in value() function 35 constexpr CallType value() const&& { return CallType::kConstMove; } in value() function 40 T value; member 79 EXPECT_EQ(x1.get<0>().value(), 1); in TEST() 90 EXPECT_EQ(x1.get<0>().value(), 1); in TEST() 100 EXPECT_EQ(x1.get<0>().value(), 1); in TEST() 101 EXPECT_EQ(x1.get<1>().value(), 2); in TEST() 120 struct DerivedType : IncompleteType {int value = 0;}; in TEST() member 122 fd.value = 7; in TEST() 127 EXPECT_EQ(x1.get<0>().value(), in TEST() 341 constexpr int value() const { return v; } TEST() function 346 constexpr int value() const { return v; } TEST() function [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/cpia2/ |
H A D | cpia2_core.c | 248 cmd.buffer.registers[0].value = CPIA2_VC_ST_CTRL_SRC_VC | in cpia2_do_command() 251 cmd.buffer.registers[1].value = CPIA2_VC_ST_CTRL_SRC_VC | in cpia2_do_command() 264 cmd.buffer.registers[0].value = CPIA2_SYSTEM_CONTROL_CLEAR_ERR; in cpia2_do_command() 265 cmd.buffer.registers[1].value = in cpia2_do_command() 381 cmd.buffer.registers[0].value = param; in cpia2_do_command() 387 cmd.buffer.registers[0].value = in cpia2_do_command() 390 cmd.buffer.registers[1].value = 20; in cpia2_do_command() 392 cmd.buffer.registers[2].value = 2; in cpia2_do_command() 394 cmd.buffer.registers[3].value = CPIA2_VC_VC_JPEG_OPT_DEFAULT; in cpia2_do_command() 584 cmd->buffer.registers[i].value); in cpia2_send_command() 1784 cpia2_set_brightness(struct camera_data *cam, unsigned char value) cpia2_set_brightness() argument 1801 cpia2_set_contrast(struct camera_data *cam, unsigned char value) cpia2_set_contrast() argument 1812 cpia2_set_saturation(struct camera_data *cam, unsigned char value) cpia2_set_saturation() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/phy/ |
H A D | sfp.c | 956 static int sfp_hwmon_read_sensor(struct sfp *sfp, int reg, long *value) in sfp_hwmon_read_sensor() argument 965 *value = be16_to_cpu(val); in sfp_hwmon_read_sensor() 970 static void sfp_hwmon_to_rx_power(long *value) in sfp_hwmon_to_rx_power() argument 972 *value = DIV_ROUND_CLOSEST(*value, 10); in sfp_hwmon_to_rx_power() 976 long *value) in sfp_hwmon_calibrate() 979 *value = DIV_ROUND_CLOSEST(*value * slope, 256) + offset; in sfp_hwmon_calibrate() 982 static void sfp_hwmon_calibrate_temp(struct sfp *sfp, long *value) in sfp_hwmon_calibrate_temp() argument 985 be16_to_cpu(sfp->diag.cal_t_offset), value); in sfp_hwmon_calibrate_temp() 975 sfp_hwmon_calibrate(struct sfp *sfp, unsigned int slope, int offset, long *value) sfp_hwmon_calibrate() argument 993 sfp_hwmon_calibrate_vcc(struct sfp *sfp, long *value) sfp_hwmon_calibrate_vcc() argument 1001 sfp_hwmon_calibrate_bias(struct sfp *sfp, long *value) sfp_hwmon_calibrate_bias() argument 1009 sfp_hwmon_calibrate_tx_power(struct sfp *sfp, long *value) sfp_hwmon_calibrate_tx_power() argument 1017 sfp_hwmon_read_temp(struct sfp *sfp, int reg, long *value) sfp_hwmon_read_temp() argument 1030 sfp_hwmon_read_vcc(struct sfp *sfp, int reg, long *value) sfp_hwmon_read_vcc() argument 1043 sfp_hwmon_read_bias(struct sfp *sfp, int reg, long *value) sfp_hwmon_read_bias() argument 1056 sfp_hwmon_read_tx_power(struct sfp *sfp, int reg, long *value) sfp_hwmon_read_tx_power() argument 1069 sfp_hwmon_read_rx_power(struct sfp *sfp, int reg, long *value) sfp_hwmon_read_rx_power() argument 1082 sfp_hwmon_temp(struct sfp *sfp, u32 attr, long *value) sfp_hwmon_temp() argument 1148 sfp_hwmon_vcc(struct sfp *sfp, u32 attr, long *value) sfp_hwmon_vcc() argument 1215 sfp_hwmon_bias(struct sfp *sfp, u32 attr, long *value) sfp_hwmon_bias() argument 1282 sfp_hwmon_tx_power(struct sfp *sfp, u32 attr, long *value) sfp_hwmon_tx_power() argument 1349 sfp_hwmon_rx_power(struct sfp *sfp, u32 attr, long *value) sfp_hwmon_rx_power() argument 1416 sfp_hwmon_read(struct device *dev, enum hwmon_sensor_types type, u32 attr, int channel, long *value) sfp_hwmon_read() argument [all...] |
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager/include/ |
H A D | hisysevent_record_c.h | 51 const HiSysEventRecordC* record, const char* name, int64_t* value);
53 const HiSysEventRecordC* record, const char* name, uint64_t* value);
55 const HiSysEventRecordC* record, const char* name, double* value);
57 const HiSysEventRecordC* record, const char* name, char** value);
59 const HiSysEventRecordC* record, const char* name, int64_t** value, size_t* len);
61 const HiSysEventRecordC* record, const char* name, uint64_t** value, size_t* len);
63 const HiSysEventRecordC* record, const char* name, double** value, size_t* len);
65 const HiSysEventRecordC* record, const char* name, char*** value, size_t* len);
|
/base/startup/init/interfaces/innerkits/reboot/ |
H A D | init_reboot_innerkits.c | 24 // Refer to parameter limit, value size should not bigger than 96
35 char value[MAX_REBOOT_OPTION_SIZE];
in DoRebootByInitPlugin() local 39 ret = snprintf_s(value, MAX_REBOOT_OPTION_SIZE, MAX_REBOOT_OPTION_SIZE - 1, "reboot,%s:%s", mode, option);
in DoRebootByInitPlugin() 41 ret = snprintf_s(value, MAX_REBOOT_OPTION_SIZE, MAX_REBOOT_OPTION_SIZE - 1, "reboot,%s", mode);
in DoRebootByInitPlugin() 45 ret = snprintf_s(value, MAX_REBOOT_OPTION_SIZE, MAX_REBOOT_OPTION_SIZE - 1, "reboot,%s", option);
in DoRebootByInitPlugin() 47 ret = snprintf_s(value, MAX_REBOOT_OPTION_SIZE, MAX_REBOOT_OPTION_SIZE - 1, "%s", "reboot");
in DoRebootByInitPlugin() 51 BEGET_LOGV("Reboot cmd %s", value);
in DoRebootByInitPlugin() 54 ret = SystemSetParameter(DOREBOOT_PARAM, value);
in DoRebootByInitPlugin() 55 BEGET_ERROR_CHECK(ret == 0, return -1, "Set parameter to trigger reboot command \" %s \" failed", value);
in DoRebootByInitPlugin()
|