/base/telephony/cellular_call/test/unittest/imstest/ |
H A D | zero_branch_test.cpp | 435 std::string info(crInfo.password); in HWTEST_F() 437 callSup.SetCallRestrictionByIms(SIM1_SLOTID, fac, static_cast<int32_t>(crInfo.mode), info, crCommand); in HWTEST_F() 438 callSup.SetCallRestrictionByIms(SIM2_SLOTID, fac, static_cast<int32_t>(crInfo.mode), info, crCommand); in HWTEST_F() 674 std::string info(cRInfo.password); in HWTEST_F() 677 ASSERT_EQ(callSup.SetCallRestrictionByIms(SIM1_SLOTID, fac, static_cast<int32_t>(cRInfo.mode), info, command), in HWTEST_F() 680 ASSERT_EQ(callSup.SetCallRestrictionByIms(SIM1_SLOTID, fac, static_cast<int32_t>(cRInfo.mode), info, command), in HWTEST_F()
|
/third_party/libcoap/examples/ |
H A D | coap-client.c | 773 fprintf(stderr, "OSCORE save restart info file error: %s\n", in get_oscore_conf() 1537 coap_addr_info_t *info; in get_session() local 1554 for (info = info_list; info != NULL; info = info->next) { in get_session() 1555 session = open_session(ctx, proto, &info->addr, dst, in get_session()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_device_generated_commands.c | 51 struct radv_userdata_locations *locs = &pipeline->base.shaders[i]->info.user_sgprs_locs; in radv_get_sequence_size() 140 /* draw info */ 147 /* bind index buffer info. Valid if base_index_size == 0 && draw_indexed */ 341 b.shader->info.workgroup_size[0] = 64; in build_dgc_prepare_shader() 1213 vs_shader->info.vs.dynamic_inputs ? &cmd_buffer->state.dynamic_vs_input : NULL; in radv_prepare_dgc() 1244 struct radv_userdata_locations *locs = &graphics_pipeline->base.shaders[i]->info.user_sgprs_locs; in radv_prepare_dgc() 1265 desc[idx * 3 + 1] = graphics_pipeline->base.shaders[i]->info.inline_push_constant_mask; in radv_prepare_dgc() 1266 desc[idx * 3 + 2] = graphics_pipeline->base.shaders[i]->info.inline_push_constant_mask >> 32; in radv_prepare_dgc()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfswipe.c | 167 " -i --info Show volume information (default)\n" in usage() 277 { "info", no_argument, NULL, 'i' }, in parse_options() 316 opts.info++; /* and fall through */ in parse_options() 433 if (opts.info && (opts.unused || opts.tails || opts.mft || opts.directory)) { in parse_options() 434 ntfs_log_error("You may not use any other options with --info.\n"); in parse_options() 459 opts.info = 1; in parse_options() 476 * @act: Wipe, test or info 531 * @act: Wipe, test or info 645 * @act: Wipe, test or info 765 * @act: Wipe, test or info [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4_generator.cpp | 1525 const char *stage_abbrev = _mesa_shader_stage_to_abbrev(nir->info.stage); in generate_code() 1808 generate_tex(p, prog_data, nir->info.stage, in generate_code() 2230 nir->info.label ? nir->info.label : "unnamed", in generate_code() 2231 _mesa_shader_stage_to_string(nir->info.stage), nir->info.name, in generate_code()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nvfx_fragprog.c | 476 if(fpc->fp->info.input_semantic_name[fsrc->Register.Index] == TGSI_SEMANTIC_FOG && (0 in nvfx_fragprog_parse_instruction() 973 fpc->r_imm = CALLOC(fpc->fp->info.immediate_count, sizeof(struct nvfx_reg)); in nvfx_fragprog_prepare() 1011 assert(fpc->nr_imm < fpc->fp->info.immediate_count); in nvfx_fragprog_prepare() 1084 if (fp->info.properties[TGSI_PROPERTY_FS_COORD_ORIGIN]) in _nvfx_fragprog_translate() 1086 if (fp->info.properties[TGSI_PROPERTY_FS_COORD_PIXEL_CENTER]) in _nvfx_fragprog_translate() 1088 if (fp->info.properties[TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS]) in _nvfx_fragprog_translate()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-win32.cc | 441 // Compute the offset for DST. The bias parameters in the timezone info in InDST() 777 SYSTEM_INFO info; in AllocatePageSize() local 778 GetSystemInfo(&info); in AllocatePageSize() 779 allocate_alignment = info.dwAllocationGranularity; in AllocatePageSize() 788 SYSTEM_INFO info; in CommitPageSize() local 789 GetSystemInfo(&info); in CommitPageSize() 790 page_size = info.dwPageSize; in CommitPageSize()
|
/third_party/python/Python/ |
H A D | sysmodule.c | 1446 Return info about the running version of Windows as a named tuple. 1495 // We need to read the version info from a system file resource in sys_getwindowsversion_impl() 1906 Print summary info to stderr about the state of pymalloc's structures. 2772 var info; 2774 info = navigator.userAgent; 2776 info = "Node.js ".concat(process.version); 2778 info = "UNKNOWN"; 2780 var len = lengthBytesUTF8(info) + 1; 2782 if (res) stringToUTF8(info, res, len);
|
/third_party/python/Tools/gdb/ |
H A D | libpython.py | 1857 info = self.is_other_python_frame() 1858 if info: 1859 sys.stdout.write('#%i %s\n' % (self.get_index(), info)) 1880 info = self.is_other_python_frame() 1881 if info: 1882 sys.stdout.write(' %s\n' % info)
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawMultiExtTests.cpp | 227 // Class that helps creating a suitable draw info vector. 291 const VkMultiDrawIndexedInfoEXT info = { first, count, usedOffset }; in addDrawInfo() local 292 deMemcpy(entry.data(), &info, sizeof(info)); in addDrawInfo() 296 const VkMultiDrawInfoEXT info = { first, count }; in addDrawInfo() local 297 deMemcpy(entry.data(), &info, sizeof(info)); in addDrawInfo() 1043 // block and the rest, so that the vertex offset will not be constant in all draw info structures. This way, the first in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassMultisampleTests.cpp | 1655 const tcu::TextureFormatInfo info (tcu::getTextureFormatInfo(format)); in iterateInternal() 1659 const Vec4 minValue (tcu::max(info.valueMin, minLimit)); in iterateInternal() 1660 const Vec4 range (tcu::min(info.valueMax, maxLimit) - minValue); in iterateInternal() 1935 const tcu::TextureFormatInfo info (tcu::getTextureFormatInfo(format)); in init() 1939 const Vec4 minValue (tcu::max(info.valueMin, minLimit)); in init() 1940 const Vec4 range (tcu::min(info.valueMax, maxLimit) - minValue); in init()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
H A D | vktSynchronizationCrossInstanceSharingTests.cpp | 220 const vk::VkPhysicalDeviceExternalBufferInfo info = in NotSupportedChecker() local 235 vki.getPhysicalDeviceExternalBufferProperties(physicalDevice, &info, &properties); in NotSupportedChecker() 237 log << TestLog::Message << "External buffer properties: " << info << "\n" << properties << TestLog::EndMessage; in NotSupportedChecker() 258 const vk::VkPhysicalDeviceExternalSemaphoreInfo info = in NotSupportedChecker() local 274 vki.getPhysicalDeviceExternalSemaphoreProperties(physicalDevice, &info, &properties); in NotSupportedChecker() 276 log << TestLog::Message << info << "\n" << properties << TestLog::EndMessage; in NotSupportedChecker()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
H A D | vktDrawMultiExtTests.cpp | 227 // Class that helps creating a suitable draw info vector. 291 const VkMultiDrawIndexedInfoEXT info = { first, count, usedOffset }; in addDrawInfo() local 292 deMemcpy(entry.data(), &info, sizeof(info)); in addDrawInfo() 296 const VkMultiDrawInfoEXT info = { first, count }; in addDrawInfo() local 297 deMemcpy(entry.data(), &info, sizeof(info)); in addDrawInfo() 1041 // block and the rest, so that the vertex offset will not be constant in all draw info structures. This way, the first in iterate()
|
/third_party/vk-gl-cts/external/amber/src/src/dawn/ |
H A D | engine_dawn.cc | 1519 for (auto info : render_pipeline->pipeline->GetColorAttachments()) { in AttachBuffersAndTextures() 1520 if (info.location >= in AttachBuffersAndTextures() 1523 if (seen_idx[info.location] != -1) { in AttachBuffersAndTextures() 1525 std::to_string(info.location)); in AttachBuffersAndTextures() 1527 seen_idx[info.location] = static_cast<int32_t>(info.location); in AttachBuffersAndTextures()
|
/third_party/skia/third_party/externals/libwebp/src/mux/ |
H A D | anim_encode.c | 794 // Set frame rect and info. in EncodeCandidate() 1299 const WebPMuxFrameInfo* const info = in FlushFrames() local 1302 err = WebPMuxPushFrame(enc->mux_, info, 1); in FlushFrames() 1309 info->x_offset, info->y_offset, info->dispose_method, in FlushFrames() 1310 info->blend_method); in FlushFrames()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassMultisampleTests.cpp | 1648 const tcu::TextureFormatInfo info (tcu::getTextureFormatInfo(format)); in iterateInternal() 1652 const Vec4 minValue (tcu::max(info.valueMin, minLimit)); in iterateInternal() 1653 const Vec4 range (tcu::min(info.valueMax, maxLimit) - minValue); in iterateInternal() 1927 const tcu::TextureFormatInfo info (tcu::getTextureFormatInfo(format)); in init() 1931 const Vec4 minValue (tcu::max(info.valueMin, minLimit)); in init() 1932 const Vec4 range (tcu::min(info.valueMax, maxLimit) - minValue); in init()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/ |
H A D | vktSynchronizationCrossInstanceSharingTests.cpp | 223 const vk::VkPhysicalDeviceExternalBufferInfo info = in NotSupportedChecker() local 238 vki.getPhysicalDeviceExternalBufferProperties(physicalDevice, &info, &properties); in NotSupportedChecker() 240 log << TestLog::Message << "External buffer properties: " << info << "\n" << properties << TestLog::EndMessage; in NotSupportedChecker() 261 const vk::VkPhysicalDeviceExternalSemaphoreInfo info = in NotSupportedChecker() local 277 vki.getPhysicalDeviceExternalSemaphoreProperties(physicalDevice, &info, &properties); in NotSupportedChecker() 279 log << TestLog::Message << info << "\n" << properties << TestLog::EndMessage; in NotSupportedChecker()
|
/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/ |
H A D | input_data_channel_stub.h | 55 void NotifyPanelStatusInfo(const PanelStatusInfo &info) override;
|
/base/hiviewdfx/hiappevent/frameworks/js/napi/include/ |
H A D | napi_util.h | 59 size_t GetCbInfo(const napi_env env, napi_callback_info info, napi_value argv[], size_t argc = 4); // 4: default size
|
/base/account/os_account/services/accountmgr/include/appaccount/ |
H A D | inner_app_account_manager.h | 85 ErrCode GetAuthenticatorInfo(const AuthenticatorSessionRequest &request, AuthenticatorInfo &info);
|
/base/account/os_account/interfaces/innerkits/appaccount/native/include/ |
H A D | app_account_manager.h | 349 * @param info - Indicates the authenticator information of the application account. 352 static ErrCode GetAuthenticatorInfo(const std::string &owner, AuthenticatorInfo &info);
|
/base/powermgr/battery_statistics/services/native/include/ |
H A D | battery_stats_core.h | 59 void UpdateDebugInfo(const std::string& info);
|
/base/print/print_fwk/frameworks/innerkitsimpl/print_impl/include/ |
H A D | iprint_service.h | 73 virtual int32_t QueryPrinterInfoByPrinterId(const std::string &printerId, PrinterInfo &info) = 0;
|
H A D | print_service_proxy.h | 70 int32_t QueryPrinterInfoByPrinterId(const std::string &printerId, PrinterInfo &info) override;
|
/base/print/print_fwk/frameworks/helper/scan_helper/include/ |
H A D | napi_scan_utils.h | 96 static size_t GetJsVal(napi_env env, napi_callback_info info, napi_value argv[], size_t length);
|