HomeSort by relevance Sort by last modified time
    Searched defs:ans (Results 1 - 25 of 40) sorted by null

1 2

  /external/f2fs-tools/fsck/
main.c 241 char ans[255] = {0}; local
244 ret = scanf("%s", ans);
246 if (!strcasecmp(ans, "y"))
248 else if (!strcasecmp(ans, "n"))
dump.c 234 char ans[255] = {0}; local
243 ret = scanf("%s", ans);
246 if (!strcasecmp(ans, "y")) {
  /external/xmlrpcpp/test/
FileClient.cpp 63 std::string ans; local
64 std::cin >> ans; local
65 if (ans != "" && ans != "y") break;
  /hardware/interfaces/boot/1.0/default/
BootControl.cpp 86 hidl_string ans; local
89 ans = suffix;
91 _hidl_cb(ans);
  /external/libxml2/
xmlcatalog.c 103 xmlChar *ans; local
196 ans = xmlCatalogResolvePublic((const xmlChar *) argv[0]);
197 if (ans == NULL) {
200 printf("%s\n", (char *) ans);
201 xmlFree(ans);
208 ans = xmlCatalogResolveSystem((const xmlChar *) argv[0]);
209 if (ans == NULL) {
212 printf("%s\n", (char *) ans);
213 xmlFree(ans);
257 ans = xmlCatalogResolve(BAD_CAST argv[0]
555 xmlChar *ans; local
    [all...]
  /external/pdfium/third_party/bigint/
BigInteger.hh 151 BigInteger ans; local
152 ans.add(*this, x);
153 return ans;
156 BigInteger ans; local
157 ans.subtract(*this, x);
158 return ans;
161 BigInteger ans; local
162 ans.multiply(*this, x);
163 return ans;
182 BigInteger ans; local
    [all...]
BigUnsigned.hh 254 BigUnsigned ans; local
255 ans.add(*this, x);
256 return ans;
259 BigUnsigned ans; local
260 ans.subtract(*this, x);
261 return ans;
264 BigUnsigned ans; local
265 ans.multiply(*this, x);
266 return ans;
285 BigUnsigned ans; local
290 BigUnsigned ans; local
295 BigUnsigned ans; local
300 BigUnsigned ans; local
305 BigUnsigned ans; local
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
ans.c 0 /* ans.c - Interface for text2atm and atm2text to ANS */
41 static int ans(const char *text,int wanted,void *result,int res_len) function
134 if (!ans(text,T_ATMA,addr,length)) return 0;
135 return ans(text,T_NSAP,addr,length);
253 if (!res && !ans(tmp,T_PTR,buffer,length)) return 0;
256 return ans(tmp,T_PTR,buffer,length);
260 return ans(tmp,T_PTR,buffer,length);
  /external/syslinux/com32/cmenu/libmenu/
help.c 41 int ans; local
45 ans = 1;
48 ans++;
50 return ans;
  /frameworks/av/tools/resampler_tools/
fir.cpp 44 double ax,ans,y; local
49 ans=1.0+y*(3.5156229+y*(3.0899424+y*(1.2067492
53 ans=(exp(ax)/sqrt(ax))*(0.39894228+y*(0.1328592e-1
58 return ans;
  /hardware/intel/img/psb_video/src/
tng_ved_scaling.c 42 float ax,ans; local
50 ans = (float)(1.0 + y * (3.5156229 + y * (3.0899424 + y * (1.2067492
56 ans = (float)((float)((sqrt(ax) / sqrt(ax)) * (0.39894228 + y * (0.1328592e-1
61 return ans;
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getnetbydns.c 126 char aux1[MAXHOSTNAMELEN], aux2[MAXHOSTNAMELEN], ans[MAXHOSTNAMELEN]; local
171 ans[0] = '\0';
172 (void)strncpy(&ans[0], bp, sizeof(ans) - 1);
173 ans[sizeof(ans) - 1] = '\0';
201 net_entry.n_name = &ans[0];
  /external/e2fsprogs/e2fsck/
problem.c 2141 int def_yn, answer, ans; local
    [all...]
  /external/iproute2/tc/
m_action.c 404 struct nlmsghdr *ans = NULL; local
486 ans = &req.n;
488 if (rtnl_talk(&rth, &req.n, ans, MAX_MSG) < 0) {
493 if (ans && print_action(NULL, &req.n, (void*)stdout) < 0) {
  /external/ltp/testcases/kernel/controllers/cgroup/
getdelays.c 174 } ans; local
185 rep_len = recv(sd, &ans, sizeof(ans), 0);
186 if (ans.n.nlmsg_type == NLMSG_ERROR ||
187 (rep_len < 0) || !NLMSG_OK((&ans.n), rep_len))
190 na = (struct nlattr *)GENLMSG_DATA(&ans);
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl17.c 436 int ans; local
604 if ((ans = parent_wait()) != EDEADLK) {
606 "returned: %d", ans);
  /external/selinux/checkpolicy/test/
dispol.c 393 char ans[81], OutfileName[121]; local
447 if (fgets(ans, sizeof(ans), stdin) == NULL) {
452 switch (ans[0]) {
478 if (fgets(ans, sizeof(ans), stdin) == NULL) {
483 ans[strlen(ans) - 1] = 0;
485 name = malloc((strlen(ans) + 1) * sizeof(char));
490 strcpy(name, ans);
    [all...]
dismod.c 845 char ans[81], OutfileName[121]; local
892 if (fgets(ans, sizeof(ans), stdin) == NULL) {
898 switch (ans[0]) {
  /external/iproute2/ip/
xfrm_policy.c 1080 char ans[128]; member in struct:__anon20606
  /external/selinux/checkpolicy/
checkpolicy.c 387 char ans[80 + 1], *outfile = NULL, *path, *fstype; local
689 FGETS(ans, sizeof(ans), stdin);
690 switch (ans[0]) {
693 FGETS(ans, sizeof(ans), stdin);
694 ssid = atoi(ans);
697 FGETS(ans, sizeof(ans), stdin);
698 tsid = atoi(ans);
    [all...]
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationService.java 212 PendingIntent ans = PhoneService.getPendingIntent(this, id, local
224 .addAction(R.drawable.ic_dial_action_call, getString(R.string.call_answer), ans)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
mathmodule.c 1319 PyObject *ans; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
mathmodule.c 1309 PyObject *ans; local
    [all...]
  /external/dnsmasq/src/
cache.c 497 struct crec *ans; local
500 ans = crecp->next;
505 struct crec *next, **up, **insert = NULL, **chainp = &ans;
570 if (ans &&
571 (ans->flags & F_FORWARD) &&
572 (ans->flags & prot) &&
573 hostname_isequal(cache_get_name(ans), name))
574 return ans;
582 struct crec *ans; local
590 ans = crecp->next
    [all...]
rfc1035.c 1139 int q, ans, anscount = 0, addncount = 0; local
1199 ans = 0; /* have we answered this question */
1208 ans = 1;
1247 ans = 1;
1259 ans = 1;
1281 ans = 1;
1290 ans = 1
    [all...]

Completed in 608 milliseconds

1 2