/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | netdbndk.cpp | 49 struct protoent *getInfo = nullptr;
in GetProtoEnt() local 50 getInfo = getprotoent();
in GetProtoEnt() 52 if (getInfo != nullptr) {
in GetProtoEnt() 69 struct protoent *getInfo = nullptr;
in GetProtoByName() local 70 getInfo = getprotobyname(proto_name);
in GetProtoByName() 72 if (getInfo != nullptr) {
in GetProtoByName() 73 napi_create_string_utf8(env, getInfo->p_name, NAPI_AUTO_LENGTH, &result);
in GetProtoByName() 112 struct protoent *getInfo = nullptr;
in GetProtoByNumber() local 113 getInfo = getprotobynumber(valueZero);
in GetProtoByNumber() 115 if (getInfo ! in GetProtoByNumber() 130 int getInfo = getnameinfo((sockaddr *)&addR_dst, sizeof(addR_dst), hostname, sizeof(hostname), serverName, GetNameInfo() local 138 hostent *getInfo = nullptr; GetHostEnt() local 165 netent *getInfo = nullptr; GetNetEnt() local 177 netent *getInfo = nullptr; GetNetByAddr() local 190 netent *getInfo = nullptr; GetNetByName() local 203 servent *getInfo = nullptr; GetServByName() local 216 servent *getInfo = nullptr; GetServByPort() local 229 hostent *getInfo = nullptr; GetHostByName() local 242 hostent *getInfo = nullptr; GetHostByAddr() local 258 int getInfo; GetHostByNameR() local 271 int getInfo; GetHostByAddrR() local 285 hostent *getInfo = nullptr; GetHostByName2() local 299 int getInfo; GetHostByName2R() local [all...] |
H A D | unistdndk.cpp | 155 int getInfo = FAIL;
in GetGroups() local 158 getInfo = getgroups(sizeof(size), list);
in GetGroups() 159 if (getInfo != FAIL) {
in GetGroups() 160 getInfo = NO_ERR;
in GetGroups() 163 napi_create_int32(env, getInfo, &result);
in GetGroups() 169 pid_t getInfo = FAIL;
in GetPid() local 170 getInfo = getpid();
in GetPid() 172 napi_create_int32(env, getInfo, &result);
in GetPid() 177 pid_t getInfo = FAIL;
in GetPPid() local 178 getInfo in GetPPid() 186 pid_t getInfo = FAIL; GetPGrp() local 215 pid_t getInfo = getpgid(getpid()); GetPGid() local 233 pid_t getInfo = FAIL; GetSid() local 258 char *getInfo = nullptr; GetLogin() local 310 int getInfo = getopt(optArgc, optArgv, optString); GetOpt() local 319 pid_t getInfo = FAIL; GetTid() local 328 uid_t getInfo = PARAM_0; GetEUid() local 337 uid_t getInfo = PARAM_0; GetGid() local 346 uid_t getInfo = PARAM_0; GetEGid() local 356 int getInfo = gethostname(name, sizeof(name)); GetHostName() local 363 int getInfo = getpagesize(); GetPageSize() local 371 int getInfo = getdtablesize(); GetDTableSize() local 382 int getInfo = getresuid(&ruid, &euid, &suid); GetReSuid() local 394 int getInfo = getresgid(&rgid, &egid, &sgid); GetResGid() local [all...] |
H A D | langinfondk.cpp | 46 char *getInfo = nl_langinfo_l(CODESET, c_locale);
in NlLanginfoL() local 49 napi_create_string_utf8(env, getInfo, NAPI_AUTO_LENGTH, &result);
in NlLanginfoL()
|
H A D | grpndk.cpp | 47 int getInfo = getgrnam_r(groupName, &grpStorage, buf, sizeof(buf), &grp);
in GetGrNamR() local 49 napi_create_int32(env, getInfo, &result);
in GetGrNamR()
|
H A D | timendk.cpp | 91 int getInfo = getitimer(ITIMER_VIRTUAL, &currValue);
in GetITimer() local 93 napi_create_int32(env, getInfo, &result);
in GetITimer()
|
H A D | stdlibndk.cpp | 422 int getInfo = getloadavg(avgs, PARAM_3);
in GetLoadAvg() local 424 napi_create_double(env, getInfo, &result);
in GetLoadAvg()
|
/test/xts/acts/multimedia/media/media_ndk_standard/avPlayerDrmNdk/entry/src/main/cpp/ |
H A D | hello.cpp | 222 DRM_MediaKeySystemInfo getInfo;
in Test_AVPlayer_GetMediaKeySystemInfo() local 223 memset(&getInfo, 0, sizeof(DRM_MediaKeySystemInfo));
in Test_AVPlayer_GetMediaKeySystemInfo() 230 info_ptr = &getInfo;
in Test_AVPlayer_GetMediaKeySystemInfo() 236 printf("psshCount = %d\n", getInfo.psshCount);
in Test_AVPlayer_GetMediaKeySystemInfo() 238 printf("psshinfo.uuid = %x\n", getInfo.psshInfo[0].uuid[i]);
in Test_AVPlayer_GetMediaKeySystemInfo() 240 printf("psshinfo.dateLen = %x\n", getInfo.psshInfo[0].dataLen);
in Test_AVPlayer_GetMediaKeySystemInfo() 241 for (int j = 0; j < getInfo.psshInfo[0].dataLen; j++) {
in Test_AVPlayer_GetMediaKeySystemInfo() 242 printf("psshinfo.date = %x\n", getInfo.psshInfo[0].data[j]);
in Test_AVPlayer_GetMediaKeySystemInfo()
|