Home
last modified time | relevance | path

Searched refs:was_created (Results 1 – 25 of 76) sorted by relevance

1234

/dports/devel/aws-c-common/aws-c-common-0.6.15/tests/
H A Dhash_table_test.c52 int was_created; in AWS_TEST_CASE() local
107 int was_created; in AWS_TEST_CASE() local
237 int was_created; in AWS_TEST_CASE() local
255 aws_hash_table_put(&hash_table, key_a_1, (void *)value_b_1, &was_created); in AWS_TEST_CASE()
256 ASSERT_INT_EQUALS(was_created, 1); in AWS_TEST_CASE()
267 ASSERT_INT_EQUALS(was_created, 0); in AWS_TEST_CASE()
363 int was_created; in AWS_TEST_CASE() local
472 int was_created = 42; in AWS_TEST_CASE() local
644 int was_created; in AWS_TEST_CASE() local
1094 int was_created; in AWS_TEST_CASE() local
[all …]
/dports/devel/aws-c-common/aws-c-common-0.6.15/verification/cbmc/proofs/aws_hash_table_create/
H A Daws_hash_table_create_harness.c25 int was_created; in aws_hash_table_create_harness() local
29 …hash_table_create(&map, key, get_p_elem ? &p_elem : NULL, track_was_created ? &was_created : NULL); in aws_hash_table_create_harness()
33 assert(map.p_impl->entry_count == old_state.entry_count + was_created); in aws_hash_table_create_harness()
/dports/devel/aws-c-common/aws-c-common-0.6.15/verification/cbmc/proofs/aws_hash_table_put/
H A Daws_hash_table_put_harness.c28 int was_created; in aws_hash_table_put_harness() local
31 int rval = aws_hash_table_put(&map, key, value, track_was_created ? &was_created : NULL); in aws_hash_table_put_harness()
34 assert(map.p_impl->entry_count == old_state.entry_count + was_created); in aws_hash_table_put_harness()
/dports/devel/aws-c-common/aws-c-common-0.6.15/verification/cbmc/stubs/
H A Daws_hash_table_no_slots_override.c87 int aws_hash_table_put(struct aws_hash_table *map, const void *key, void *value, int *was_created) { in aws_hash_table_put() argument
91 if (was_created) { in aws_hash_table_put()
92 *was_created = track_was_created; in aws_hash_table_put()
132 int *was_created);
/dports/graphics/opendx/dx-4.4.4/src/exec/dxmods/
H A D_rw_image.c528 int was_created = 0; in _dxf_GetFlatSeriesImage() local
544 was_created = 1; in _dxf_GetFlatSeriesImage()
562 *created = was_created; in _dxf_GetFlatSeriesImage()
566 if (img && was_created) DXDelete((Object)img); in _dxf_GetFlatSeriesImage()
/dports/devel/aws-c-common/aws-c-common-0.6.15/source/
H A Dhash_table.c514 int *was_created) { in aws_hash_table_create() argument
521 if (!was_created) { in aws_hash_table_create()
522 was_created = &ignored; in aws_hash_table_create()
531 *was_created = 0; in aws_hash_table_create()
569 *was_created = 1; in aws_hash_table_create()
575 int aws_hash_table_put(struct aws_hash_table *map, const void *key, void *value, int *was_created) { in aws_hash_table_put() argument
579 if (!was_created) { in aws_hash_table_put()
580 was_created = &was_created_fallback; in aws_hash_table_put()
583 if (aws_hash_table_create(map, key, &p_elem, was_created)) { in aws_hash_table_put()
593 if (!*was_created) { in aws_hash_table_put()
H A Dmemtrace.c146 int was_created = 0; in s_alloc_tracer_track() local
149 … aws_hash_table_create(&tracer->stacks, (void *)(uintptr_t)stack_id, &item, &was_created)); in s_alloc_tracer_track()
151 if (was_created) { in s_alloc_tracer_track()
259 int was_created = 0; in s_collect_stack_stats() local
262 … aws_hash_table_create(stack_info, (void *)(uintptr_t)alloc->stack, &stack_item, &was_created)); in s_collect_stack_stats()
263 if (was_created) { in s_collect_stack_stats()
/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/dcmdata/apps/
H A Dmdfconen.cc71 create_if_necessary(OFFalse), was_created(OFFalse), jobs(NULL), files(NULL) in MdfConsoleEngine()
532 if (was_created && (output_xfer_option == EXS_Unknown)) in startProvidingService()
544 if (!no_backup_option && !was_created) in startProvidingService()
556 else if (!no_backup_option && !was_created) in startProvidingService()
590 was_created = !OFStandard::fileExists(filename); in loadFile()
592 if (result.good() && !no_backup_option && !was_created) in loadFile()
H A Dmdfconen.h209 OFBool was_created; variable
/dports/devel/aws-c-common/aws-c-common-0.6.15/include/aws/common/
H A Dhash_table.h262 int *was_created);
276 int aws_hash_table_put(struct aws_hash_table *map, const void *key, void *value, int *was_created);
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/dom_distiller/core/
H A Ddom_distiller_service.cc69 bool was_created = GetOrCreateTaskTrackerForUrl(url, &task_tracker); in ViewUrl() local
73 if (was_created) { in ViewUrl()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/dom_distiller/core/
H A Ddom_distiller_service.cc69 bool was_created = GetOrCreateTaskTrackerForUrl(url, &task_tracker); in ViewUrl() local
73 if (was_created) { in ViewUrl()
/dports/devel/aws-c-http/aws-c-http-0.6.8/source/
H A Dhttp.c193 int was_created = 0; in s_init_str_to_enum_hash_table() local
200 err = aws_hash_table_put(table, &str_array[i], (void *)enum_value, &was_created); in s_init_str_to_enum_hash_table()
201 AWS_FATAL_ASSERT(!err && was_created); in s_init_str_to_enum_hash_table()
/dports/x11-fm/worker/worker-4.10.0/src/
H A Dnwc_os_makedirs.hh66 bool was_created() const in was_created() function in NWC::OS::deep_dir_info
H A Dnwc_os_makedirs.cc93 if ( s.was_created() ) { in make_dirs()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor.cc349 bool* was_created) { in NewInternedDescriptor() argument
350 if (was_created) { in NewInternedDescriptor()
351 *was_created = false; in NewInternedDescriptor()
391 if (was_created) { in NewInternedDescriptor()
392 *was_created = true; in NewInternedDescriptor()
1504 bool was_created; in PyFileDescriptor_FromDescriptorWithSerializedPb() local
1506 &PyFileDescriptor_Type, file_descriptor, &was_created); in PyFileDescriptor_FromDescriptorWithSerializedPb()
1510 if (was_created) { in PyFileDescriptor_FromDescriptorWithSerializedPb()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor.cc349 bool* was_created) { in NewInternedDescriptor() argument
350 if (was_created) { in NewInternedDescriptor()
351 *was_created = false; in NewInternedDescriptor()
391 if (was_created) { in NewInternedDescriptor()
392 *was_created = true; in NewInternedDescriptor()
1504 bool was_created; in PyFileDescriptor_FromDescriptorWithSerializedPb() local
1506 &PyFileDescriptor_Type, file_descriptor, &was_created); in PyFileDescriptor_FromDescriptorWithSerializedPb()
1510 if (was_created) { in PyFileDescriptor_FromDescriptorWithSerializedPb()
/dports/devel/py-protobuf/protobuf-3.17.3/google/protobuf/pyext/
H A Ddescriptor.cc353 bool* was_created) { in NewInternedDescriptor() argument
354 if (was_created) { in NewInternedDescriptor()
355 *was_created = false; in NewInternedDescriptor()
395 if (was_created) { in NewInternedDescriptor()
396 *was_created = true; in NewInternedDescriptor()
1508 bool was_created; in PyFileDescriptor_FromDescriptorWithSerializedPb() local
1510 &PyFileDescriptor_Type, file_descriptor, &was_created); in PyFileDescriptor_FromDescriptorWithSerializedPb()
1514 if (was_created) { in PyFileDescriptor_FromDescriptorWithSerializedPb()
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DDialogDb.cpp29 …init_dialog_db(SqliteDb &db, int32 version, KeyValueSyncInterface &binlog_pmc, bool &was_created) { in init_dialog_db() argument
31 was_created = false; in init_dialog_db()
64 was_created = true; in init_dialog_db()
H A DDialogDb.h101 bool &was_created) TD_WARN_UNUSED_RESULT;
/dports/devel/aws-c-mqtt/aws-c-mqtt-0.7.8/source/
H A Dtopic_tree.c620 int was_created = 0; in aws_mqtt_topic_tree_transaction_insert() local
621 aws_hash_table_create(&current->subtopics, &sub_part, &elem, &was_created); in aws_mqtt_topic_tree_transaction_insert()
623 if (was_created) { in aws_mqtt_topic_tree_transaction_insert()
/dports/games/freeciv/freeciv-2.6.6/server/
H A Dconnecthand.c544 if (!played->is_connected && !played->was_created) { in find_uncontrolled_player()
613 if (!pplayer->was_created && NULL == pplayer->nation) { in connection_attach_real()
763 !pplayer->was_created && !game_was_started()) { in connection_detach()
/dports/games/freeciv-nox11/freeciv-2.6.6/server/
H A Dconnecthand.c544 if (!played->is_connected && !played->was_created) { in find_uncontrolled_player()
613 if (!pplayer->was_created && NULL == pplayer->nation) { in connection_attach_real()
763 !pplayer->was_created && !game_was_started()) { in connection_detach()
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/tddb/td/db/binlog/
H A DBinlog.h34 bool was_created{false};
/dports/multimedia/libv4l/linux-5.13-rc2/fs/btrfs/
H A Dcheck-integrity.c359 int *was_created);
2205 int was_created; in btrfsic_process_written_superblock() local
2225 &was_created); in btrfsic_process_written_superblock()
2232 if (was_created) in btrfsic_process_written_superblock()
2568 int *was_created) in btrfsic_block_lookup_or_add() argument
2603 if (NULL != was_created) in btrfsic_block_lookup_or_add()
2604 *was_created = 1; in btrfsic_block_lookup_or_add()
2606 if (NULL != was_created) in btrfsic_block_lookup_or_add()
2607 *was_created = 0; in btrfsic_block_lookup_or_add()

1234