HomeSort by: relevance | last modified time | path
    Searched defs:conflict (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/bsd/pkg_install/dist/lib/
conflicts.c 61 * Data structure to keep the intermediate result of the conflict
64 * ''conflicting_pkgname''. The pattern that leads to the conflict is
66 * conflict.
95 struct package_conflict *conflict = v; local
101 if (conflict->skip_pkgname != NULL &&
102 strcmp(conflict->skip_pkgname, pkgname) == 0)
115 if (pkg_match(p->name, conflict->pkgname) == 1) {
116 *(conflict->conflicting_pkgname) = xstrdup(pkgname);
117 *(conflict->conflicting_pattern) = xstrdup(p->name);
  /src/crypto/external/apache2/openssl/dist/crypto/engine/
eng_list.c 59 int conflict = 0; local
68 while (iterator && !conflict) {
69 conflict = (strcmp(iterator->id, e->id) == 0);
72 if (conflict) {
  /src/crypto/external/bsd/openssl/dist/crypto/engine/
eng_list.c 59 int conflict = 0; local
67 while (iterator && !conflict) {
68 conflict = (strcmp(iterator->id, e->id) == 0);
71 if (conflict) {
  /src/crypto/external/bsd/openssl.old/dist/crypto/engine/
eng_list.c 56 int conflict = 0; local
64 while (iterator && !conflict) {
65 conflict = (strcmp(iterator->id, e->id) == 0);
68 if (conflict) {
  /src/external/gpl2/rcs/dist/src/
partime.c 643 * If there is no conflict, merge into *T the additional information in *U
647 # define conflict(a,b) ((a) != (b) && TM_DEFINED (a) && TM_DEFINED (b)) macro
649 conflict (t->tm.tm_sec, u->tm.tm_sec) ||
650 conflict (t->tm.tm_min, u->tm.tm_min) ||
651 conflict (t->tm.tm_hour, u->tm.tm_hour) ||
652 conflict (t->tm.tm_mday, u->tm.tm_mday) ||
653 conflict (t->tm.tm_mon, u->tm.tm_mon) ||
654 conflict (t->tm.tm_year, u->tm.tm_year) ||
655 conflict (t->tm.tm_wday, u->tm.tm_yday) ||
656 conflict (t->ymodulus, u->ymodulus) |
665 # undef conflict macro
    [all...]
  /src/usr.sbin/timed/timed/
timed.c 448 struct tsp resp, conflict, *answer; local
468 * Various conditions can cause conflict: races between
525 * checking also not to send CONFLICT to ack'ed master
530 conflict.tsp_type = TSP_CONFLICT;
531 set_tsp_name(&conflict, hostname);
532 if (!acksend(&conflict, &masteraddr, mastername,
  /src/external/mpl/bind/dist/bin/dnssec/
dnssectool.c 486 bool conflict = false; local
529 while (!ISC_LIST_EMPTY(matchkeys) && !conflict) {
539 conflict = true;
571 if (!conflict && !keykey) {
575 return conflict;
dnssec-keygen.c 265 bool conflict = false; local
625 conflict = false;
783 conflict = true;
805 } while (conflict);
807 if (conflict) {
dnssec-ksr.c 332 bool conflict = false; local
432 conflict = false;
466 conflict = true;
482 } while (conflict);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_connectors.c 428 struct drm_connector *conflict; local
431 list_for_each_entry(conflict, &dev->mode_config.connector_list, head) {
434 if (conflict == connector)
437 radeon_conflict = to_radeon_connector(conflict);
439 drm_connector_for_each_possible_encoder(conflict, enc) {
442 if (conflict->status != connector_status_connected)
450 conflict->name);
453 conflict->status = connector_status_disconnected;
454 radeon_connector_update_scratch_regs(conflict, connector_status_disconnected);
459 conflict->name)
    [all...]
  /src/external/mit/isl/dist/
isl_tab.h 171 int (*conflict)(int con, void *user); member in struct:isl_tab
277 int (*conflict)(int con, void *user), void *user);
  /src/external/gpl3/binutils/dist/gas/config/
tc-tilepro.c 689 uint64_t conflict; local
718 conflict = all_regs_written & regs;
719 if (conflict != 0 && !allow_suspicious_bundles)
721 /* Find which register caused the conflict. */
727 if (((conflict >> i) & 1) != 0)
tc-tilegx.c 801 uint64_t conflict; local
830 conflict = all_regs_written & regs;
831 if (conflict != 0 && !allow_suspicious_bundles)
833 /* Find which register caused the conflict. */
839 if (((conflict >> i) & 1) != 0)
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-tilepro.c 689 uint64_t conflict; local
718 conflict = all_regs_written & regs;
719 if (conflict != 0 && !allow_suspicious_bundles)
721 /* Find which register caused the conflict. */
727 if (((conflict >> i) & 1) != 0)
tc-tilegx.c 801 uint64_t conflict; local
830 conflict = all_regs_written & regs;
831 if (conflict != 0 && !allow_suspicious_bundles)
833 /* Find which register caused the conflict. */
839 if (((conflict >> i) & 1) != 0)
  /src/external/gpl3/gdb/dist/bfd/
elfxx-riscv.c 2108 (_("`zfinx' is conflict with the `f/d/q/zfh/zfhmin' extension"));
2115 (_("`xtheadvector' is conflict with the `v' extension"));
2518 bool conflict = false; local
2522 conflict = riscv_parse_check_conflicts (rps);
2524 return conflict;
  /src/external/mpl/dhcp/bind/dist/lib/dns/
keymgr.c 435 bool conflict = false; local
452 conflict = keymgr_keyid_conflict(newkey, keylist);
453 if (!conflict) {
454 conflict = keymgr_keyid_conflict(newkey, newkeys);
456 if (conflict) {
464 } while (conflict);
466 INSIST(!conflict);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-mdns-proxy.c 2021 host->registered_name, error_code == kDNSServiceErr_NoError ? ":" : " with a conflict");
2265 // When we get a late name conflict on the hostname, we need to update the host registration and all of the
2429 note = " completed with conflict.";
2470 // The other error we could get is a name conflict. This means that some other advertising proxy or host on
2472 // its copy of the host information later than ours. So if we get a name conflict, it's up to the client or
3494 typedef enum { missed, match, conflict } instance_outcome_t; enumerator in enum:__anon6022
3508 return conflict;
3654 // hostname, means that there is a conflict. We have to look through all the entries; the presence of
3669 // First check for a match or conflict in the host itself.
3693 if (outcome == conflict) {
    [all...]
  /src/external/gpl2/diffutils/dist/src/
diff3.c 1500 bool conflicts_found = 0, conflict;
1517 case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
1518 case DIFF_3RD: if (overlap_only) continue; conflict = 0; break;
1519 case DIFF_ALL: if (simple_only) continue; conflict = flagging; break;
1525 if (conflict)
1530 /* Mark end of conflict. */
1552 /* Mark start of conflict. */
1617 bool conflicts_found = 0, conflict;
1634 case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
1635 case DIFF_3RD: if (overlap_only) continue; conflict = 0; break
1496 bool conflicts_found = 0, conflict; local
1613 bool conflicts_found = 0, conflict; local
    [all...]
  /src/external/gpl2/xcvs/dist/diff/
diff3.c 1600 int conflicts_found = 0, conflict;
1617 case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
1618 case DIFF_3RD: if (overlap_only) continue; conflict = 0; break;
1619 case DIFF_ALL: if (simple_only) continue; conflict = flagging; break;
1622 if (conflict)
1627 /* Mark end of conflict. */
1650 /* Mark start of conflict. */
1726 int conflicts_found = 0, conflict;
1745 case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
1746 case DIFF_3RD: if (overlap_only) continue; conflict = 0; break
1596 int conflicts_found = 0, conflict; local
1722 int conflicts_found = 0, conflict; local
    [all...]
  /src/external/gpl2/xcvs/dist/src/
cvs.h 319 char *conflict; member in struct:entnode
769 /* If non-NULL, there was a conflict (or merely a merge? See merge_file)
771 directory file which was created with the conflict markers in it.
822 T_CONFLICT, /* C (conflict) list */
  /src/external/mit/lua/dist/src/
lparser.c 1348 int conflict = 0; local
1353 conflict = 1; /* table is the upvalue being assigned now */
1360 conflict = 1; /* table is the local being assigned now */
1366 conflict = 1;
1372 if (conflict) {
  /src/external/mpl/bind/dist/lib/dns/
keymgr.c 501 bool conflict = false; local
537 conflict = keymgr_keyid_conflict(newkey, kkey->tag_min,
539 if (!conflict) {
540 conflict = keymgr_keyid_conflict(
543 if (!conflict) {
544 conflict = keymgr_keyid_conflict(
547 if (conflict) {
555 } while (conflict);
557 INSIST(!conflict);
  /src/external/gpl3/gcc/dist/gcc/
gcse.cc 981 /* True if mems_conflict_for_gcse_p finds a conflict between two memory
983 bool conflict;
1001 /* If DEST is not a MEM, then it will not conflict with the load. Note
1012 mci->conflict = true;
1017 mci->conflict = true;
1060 mci.conflict = false;
1062 if (mci.conflict)
974 bool conflict; member in struct:mem_conflict_info
  /src/external/gpl3/gcc.old/dist/gcc/
gcse.cc 980 /* True if mems_conflict_for_gcse_p finds a conflict between two memory
982 bool conflict;
1000 /* If DEST is not a MEM, then it will not conflict with the load. Note
1011 mci->conflict = true;
1016 mci->conflict = true;
1059 mci.conflict = false;
1061 if (mci.conflict)
973 bool conflict; member in struct:mem_conflict_info

Completed in 62 milliseconds

1 2