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

1 2 3 4 5 6 7 8 91011

  /system/core/adb/
diagnose_usb.cpp 50 // The user is in plugdev so the problem is likely with the udev rules.
64 const char* problem = GetUdevProblem(); local
65 if (problem != nullptr) {
66 help_text += android::base::StringPrintf(" (%s)", problem);
76 const char* problem = GetUdevProblem(); local
77 if (problem != nullptr) {
78 header += android::base::StringPrintf(": %s", problem);
  /external/openssh/
gss-serv-krb5.c 66 krb5_error_code problem; local
71 problem = krb5_init_context(&krb_context);
72 if (problem) {
121 krb5_error_code problem; local
137 if ((problem = krb5_cc_new_unique(krb_context, krb5_fcc_ops.prefix,
139 errmsg = krb5_get_error_message(krb_context, problem);
142 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) {
144 krb5_get_err_text(krb_context, problem));
150 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) {
151 errmsg = krb5_get_error_message(krb_context, problem);
    [all...]
auth-krb5.c 62 krb5_error_code problem; local
65 problem = krb5_init_context(&authctxt->krb5_ctx);
66 if (problem)
67 return (problem);
79 krb5_error_code problem; local
91 problem = krb5_init(authctxt);
92 if (problem)
95 problem = krb5_parse_name(authctxt->krb5_ctx, client,
97 if (problem)
102 problem = krb5_cc_new_unique(authctxt->krb5_ctx
    [all...]
  /external/strace/mpers-m32/
struct_sg_req_info.h 8 char problem; member in struct:__anon30295
  /external/strace/mpers-mx32/
struct_sg_req_info.h 8 char problem; member in struct:__anon30444
  /external/oauth/core/src/main/java/net/oauth/
SimpleOAuthValidator.java 78 OAuthProblemException problem = new OAuthProblemException("version_rejected"); local
79 problem.setParameter("oauth_acceptable_versions", minVersion + "-" + maxVersion);
80 throw problem;
94 OAuthProblemException problem = new OAuthProblemException("timestamp_refused"); local
95 problem.setParameter("oauth_acceptable_timestamps", min + "-" + max);
96 throw problem;
OAuthMessage.java 240 OAuthProblemException problem = new OAuthProblemException(OAuth.Problems.PARAMETER_ABSENT); local
241 problem.setParameter(OAuth.Problems.OAUTH_PARAMETERS_ABSENT, OAuth.percentEncode(absent));
242 throw problem;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
MarkedYAMLException.java 23 private String problem; field in class:MarkedYAMLException
27 protected MarkedYAMLException(String context, Mark contextMark, String problem,
29 this(context, contextMark, problem, problemMark, note, null);
32 protected MarkedYAMLException(String context, Mark contextMark, String problem,
34 super(context + "; " + problem + "; " + problemMark, cause);
37 this.problem = problem;
42 protected MarkedYAMLException(String context, Mark contextMark, String problem, Mark problemMark) {
43 this(context, contextMark, problem, problemMark, null, null);
46 protected MarkedYAMLException(String context, Mark contextMark, String problem,
    [all...]
  /external/clang/test/Analysis/inlining/
path-notes.cpp 173 int problem = 1 / getZero(); // expected-warning {{Division by zero}} local
180 int problem = 1 / getZeroByRef(); // expected-warning {{Division by zero}} local
    [all...]
  /external/e2fsprogs/e2fsck/
pass5.c 22 #include "problem.h"
202 * not enough to fix the problem, hence it is not safe to run discard
271 static void print_bitmap_problem(e2fsck_t ctx, problem_t problem,
274 switch (problem) {
279 problem = PR_5_BLOCK_RANGE_UNUSED;
285 problem = PR_5_BLOCK_RANGE_USED;
291 problem = PR_5_INODE_RANGE_UNUSED;
297 problem = PR_5_INODE_RANGE_USED;
300 fix_problem(ctx, problem, pctx);
323 problem_t problem, save_problem local
577 problem_t problem, save_problem; local
    [all...]
super.c 21 #include "problem.h"
468 problem_t problem; local
892 problem = PR_0_FUTURE_SB_LAST_MOUNT;
894 problem = PR_0_FUTURE_SB_LAST_MOUNT_FUDGED;
895 if (fix_problem(ctx, problem, &pctx)) {
904 problem = PR_0_FUTURE_SB_LAST_WRITE;
906 problem = PR_0_FUTURE_SB_LAST_WRITE_FUDGED;
907 if (fix_problem(ctx, problem, &pctx)) {
journal.c 27 #include "problem.h"
799 problem_t problem; local
876 problem = PR_0_JOURNAL_RUN_DEFAULT;
878 problem = PR_0_JOURNAL_RUN;
879 if (fix_problem(ctx, problem, &pctx)) {
pass2.c 49 #include "problem.h"
360 problem_t problem = 0; local
363 problem = PR_2_MISSING_DOT;
366 problem = PR_2_1ST_NOT_DOT;
368 problem = PR_2_DOT_NULL_TERM;
371 if (problem) {
372 if (fix_problem(ctx, problem, pctx)) {
420 problem_t problem = 0; local
424 problem = PR_2_MISSING_DOT_DOT;
428 problem = PR_2_2ND_NOT_DOT_DOT
895 problem_t problem; local
1696 problem_t problem = 0; local
    [all...]
pass1.c 51 #include "problem.h"
159 * for devices. (And that's when the problem is caused, since
343 problem_t problem = 0; local
362 problem = 0;
367 problem = PR_1_INODE_EA_ALLOC_COLLISION;
377 problem = PR_1_INODE_EA_ALLOC_COLLISION;
387 problem = PR_1_ATTR_NAME_LEN;
397 problem = PR_1_ATTR_VALUE_SIZE;
404 problem = PR_1_ATTR_VALUE_BLOCK;
411 problem = PR_1_INODE_EA_ALLOC_COLLISION
1614 problem_t problem = 0; local
2559 problem_t problem; local
3367 problem_t problem = 0; local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 320 OAuthProblemException problem = new OAuthProblemException(); local
325 problem.getParameters().putAll(response.getDump());
333 throw problem;
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 69 OAuthProblemException problem = new OAuthProblemException( local
71 problem.setParameter("oauth_signature", signature);
72 problem.setParameter("oauth_signature_base_string", baseString);
73 problem.setParameter("oauth_signature_method", message
75 throw problem;
226 OAuthProblemException problem = new OAuthProblemException( local
230 problem.setParameter("oauth_acceptable_signature_methods",
233 throw problem;
  /external/e2fsprogs/lib/ext2fs/
icount.c 776 int problem = 0; local
841 problem++;
850 return problem;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegAllocPBQP.cpp 12 // problem representing the register allocation problem under consideration,
78 /// PBQP based allocators solve the register allocation problem by mapping
148 /// \brief Given a solved PBQP problem maps this solution back to a register
150 bool mapPBQPToRegAlloc(const PBQPRAProblem &problem,
276 // Record the mapping and allowed set in the problem.
514 bool RegAllocPBQP::mapPBQPToRegAlloc(const PBQPRAProblem &problem,
522 const PBQP::Graph &g = problem.getGraph();
528 unsigned vreg = problem.getVRegForNode(node);
531 if (problem.isPRegOption(vreg, alloc))
678 std::auto_ptr<PBQPRAProblem> problem = local
    [all...]
  /frameworks/base/core/java/android/view/
InputEventConsistencyVerifier.java 24 * Logs a description of each problem detected.
26 * When a problem is detected, the event is tainted. This mechanism prevents the same
40 // The number of recent events to log when a problem is detected.
221 problem("ACTION_DOWN but key is already down and this event "
232 problem("ACTION_UP but key was not down.");
241 problem("Invalid action " + KeyEvent.actionToString(action)
273 problem("ACTION_DOWN but trackball is already down.");
283 problem("ACTION_UP but trackball is not down.");
295 problem("Invalid action " + MotionEvent.actionToString(action)
301 problem("Trackball is down but pressure is not greater than 0.")
727 private void problem(String message) { method in class:InputEventConsistencyVerifier
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/scsi/
sg.h 123 char problem; /* 0 -> no problem detected, 1 -> error to report */ member in struct:sg_req_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/scsi/
sg.h 123 char problem; /* 0 -> no problem detected, 1 -> error to report */ member in struct:sg_req_info
  /bionic/libc/kernel/android/scsi/
sg.h 99 char problem; member in struct:sg_req_info
  /external/kernel-headers/original/scsi/
sg.h 119 char problem; /* 0 -> no problem detected, 1 -> error to report */ member in struct:sg_req_info
  /external/dnsmasq/src/
option.c 676 char *comma = NULL, *problem = NULL; local
740 problem = _("bad dhcp-option");
797 problem = _("bad IP address");
896 problem = _("bad domain in dhcp-option");
955 problem = _("dhcp-option too long");
957 if (!problem)
964 problem = _("illegal dhcp-match");
978 return problem;
986 char *comma, *problem = NULL;; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-builder-support/3.3.9/
maven-builder-support-3.3.9.jar 

Completed in 617 milliseconds

1 2 3 4 5 6 7 8 91011