Home
last modified time | relevance | path

Searched refs:gid (Results 151 - 175 of 1571) sorted by relevance

12345678910>>...63

/third_party/skia/src/utils/
H A DSkCustomTypeface.cpp155 for (int gid = 0; gid < this->glyphCount(); ++gid) { in getGlyphToUnicodeMap()
156 glyphToUnicode[gid] = SkTo<SkUnichar>(gid); in getGlyphToUnicodeMap()
/third_party/mbedtls/include/mbedtls/
H A Decdsa.h119 * \param gid The ECP group ID to check.
123 int mbedtls_ecdsa_can_do(mbedtls_ecp_group_id gid);
601 * \param gid The elliptic curve to use. One of the various
610 int mbedtls_ecdsa_genkey(mbedtls_ecdsa_context *ctx, mbedtls_ecp_group_id gid,
/third_party/skia/bin/
H A Dfetch-sk93 gid = os.getgid() variable
94 os.chown(sk_path, uid, gid)
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageAtomicOperationTests.cpp1559 const IVec3 gid(x + i*gridSize.x(), y, z); in verifyResult()
1561 (*((deInt64*)resultValue) == getAtomicFuncArgument<deInt64>(m_operation, gid, extendedGridSize)) : in verifyResult()
1563 floatToIntValue == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize) : in verifyResult()
1564 (*((deInt32*)resultValue) == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize)); in verifyResult()
1578 const IVec3 gid(x + i*gridSize.x(), y, z); in verifyResult()
1580 (*((deInt64*)resultValue) == getAtomicFuncArgument<deInt64>(m_operation, gid, extendedGridSize)) : in verifyResult()
1582 floatToIntValue == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize) : in verifyResult()
1583 (*((deInt32*)resultValue) == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize)); in verifyResult()
1601 const IVec3 gid(x + i*gridSize.x(), y, z); in isValueCorrect()
1602 T arg = getAtomicFuncArgument<T>(m_operation, gid, extendedGridSiz in isValueCorrect()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageAtomicOperationTests.cpp1563 const IVec3 gid(x + i*gridSize.x(), y, z); in verifyResult()
1565 (*((deInt64*)resultValue) == getAtomicFuncArgument<deInt64>(m_operation, gid, extendedGridSize)) : in verifyResult()
1567 floatToIntValue == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize) : in verifyResult()
1568 (*((deInt32*)resultValue) == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize)); in verifyResult()
1582 const IVec3 gid(x + i*gridSize.x(), y, z); in verifyResult()
1584 (*((deInt64*)resultValue) == getAtomicFuncArgument<deInt64>(m_operation, gid, extendedGridSize)) : in verifyResult()
1586 floatToIntValue == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize) : in verifyResult()
1587 (*((deInt32*)resultValue) == getAtomicFuncArgument<deInt32>(m_operation, gid, extendedGridSize)); in verifyResult()
1605 const IVec3 gid(x + i*gridSize.x(), y, z); in isValueCorrect()
1606 T arg = getAtomicFuncArgument<T>(m_operation, gid, extendedGridSiz in isValueCorrect()
[all...]
/third_party/libwebsockets/lib/core-net/
H A Dnetwork.c346 gid_t gid = vhost->context->gid; in lws_socket_bind() local
350 vhost->unix_socket_perms, &uid, &gid)) { in lws_socket_bind()
356 if (iface && iface[0] != '@' && uid && gid) { in lws_socket_bind()
357 if (chown(iface, uid, gid)) { in lws_socket_bind()
360 (unsigned int)gid); in lws_socket_bind()
367 (unsigned int)gid); in lws_socket_bind()
/third_party/node/lib/internal/fs/
H A Dutils.js412 function StatsBase(dev, mode, nlink, uid, gid, rdev, blksize,
418 this.gid = gid;
478 function BigIntStats(dev, mode, nlink, uid, gid, rdev, blksize,
481 ReflectApply(StatsBase, this, [dev, mode, nlink, uid, gid, rdev, blksize,
509 function Stats(dev, mode, nlink, uid, gid, rdev, blksize,
512 FunctionPrototypeCall(StatsBase, this, dev, mode, nlink, uid, gid, rdev,
/third_party/node/lib/
H A Dfs.js1996 * @param {number} gid
2000 function lchown(path, uid, gid, callback) {
2004 validateInteger(gid, 'gid', -1, kMaxUserId);
2007 binding.lchown(pathModule.toNamespacedPath(path), uid, gid, req);
2014 * @param {number} gid
2017 function lchownSync(path, uid, gid) {
2020 validateInteger(gid, 'gid', -1, kMaxUserId);
2022 binding.lchown(pathModule.toNamespacedPath(path), uid, gid, undefine
[all...]
H A Dchild_process.js111 * gid?: number;
222 * gid?: number;
315 * gid?: number;
354 gid: options.gid,
589 // Validate the gid, if present.
590 if (options.gid != null && !isInt32(options.gid)) {
591 throw new ERR_INVALID_ARG_TYPE('options.gid', 'int32', options.gid);
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dcore-util.h66 int pa_make_secure_dir(const char* dir, mode_t m, uid_t uid, gid_t gid, bool update_perms);
67 int pa_make_secure_parent_dir(const char *fn, mode_t, uid_t uid, gid_t gid, bool update_perms);
122 int pa_own_uid_in_group(const char *name, gid_t *gid);
/test/xts/acts/arkui/libuv/src/
H A DActsLibuvTest.cpp174 uv_gid_t gid = 2020; in HWTEST_F() local
175 retC = uv_fs_lchown(&loop, &req, path, uid, gid, nullptr); in HWTEST_F()
/third_party/cups-filters/fontembed/
H A Dtest_pdf.c57 const unsigned short gid=emb_get(emb,(unsigned char)str[iA]); in write_string() local
58 fprintf(f,"%04x",gid); in write_string()
H A Dembed_pdf_int.h8 EMB_PDF_FONTWIDTHS *emb_pdf_fw_cidwidths(const BITSET glyphs,int len,int default_width,int (*getGlyphWidth)(void *context,int gid),void *context);
/third_party/libuv/test/
H A Drun-tests.c252 uv_gid_t gid = atoi(argv[3]); in maybe_run_test() local
255 ASSERT_EQ(gid, getgid()); in maybe_run_test()
/third_party/skia/third_party/externals/freetype/src/gxvalid/
H A Dgxvprop.c78 gxv_prop_zero_advance_validate( FT_UShort gid, in gxv_prop_zero_advance_validate() argument
91 gid, in gxv_prop_zero_advance_validate()
139 /* The gid for complement must be greater than 0 */ in gxv_prop_property_validate()
148 /* The gid for complement must be the face. */ in gxv_prop_property_validate()
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dpsft.c664 CF2_Int gid; in FT_LOCAL_DEF() local
679 gid = code; in FT_LOCAL_DEF()
683 gid = cff_lookup_glyph_by_stdcharcode( decoder->cff, code ); in FT_LOCAL_DEF()
684 if ( gid < 0 ) in FT_LOCAL_DEF()
689 (CF2_UInt)gid, in FT_LOCAL_DEF()
/third_party/eudev/src/shared/
H A Dutil.h228 int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
232 int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode);
241 int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home, const char **shell);
242 int get_group_creds(const char **groupname, gid_t *gid);
/third_party/libwebsockets/lib/misc/
H A Dlws-struct-sqlite.c509 gid_t gid = 0; in lws_struct_sq3_open() local
523 lws_get_effective_uid_gid(context, &uid, &gid); in lws_struct_sq3_open()
525 if (chown(sqlite3_path, uid, gid)) in lws_struct_sq3_open()
530 sqlite3_path, (unsigned int)uid, (unsigned int)gid); in lws_struct_sq3_open()
/third_party/libwebsockets/test-apps/
H A Dtest-server.c428 gid_t gid = (gid_t)-1; in main() local
459 gid = (gid_t)atoi(optarg); in main()
608 info.gid = gid; in main()
/third_party/toybox/porting/liteos_a/toys/posix/
H A Dcp.c98 gid_t gid;
485 if (TT.i.g) try->st.st_gid = TT.gid; in install_node()
504 TT.gid = TT.i.g ? xgetgid(TT.i.g) : -1; in install_main()
510 if (lchown(*ss, TT.uid, TT.gid)) perror_msg("chown '%s'", *ss); in install_main()
/third_party/toybox/toys/posix/
H A Dcp.c114 gid_t gid;
481 if (TT.i.g) try->st.st_gid = TT.gid; in install_node()
500 TT.gid = TT.i.g ? xgetgid(TT.i.g) : -1; in install_main()
506 if (lchown(*ss, TT.uid, TT.gid)) perror_msg("chown '%s'", *ss); in install_main()
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Dipc.h4 gid_t gid; member
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Dipc.h4 gid_t gid; member
/third_party/musl/porting/liteos_a/kernel/include/bits/
H A Dipc.h4 gid_t gid; member
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/
H A Dipc.h4 gid_t gid; member

Completed in 20 milliseconds

12345678910>>...63