Home
last modified time | relevance | path

Searched refs:last_record_id (Results 1 – 21 of 21) sorted by relevance

/dports/sysutils/freeipmi/freeipmi-1.6.8/ipmiseld/
H A Dipmiseld.c191 last_record_id->loaded = 1; in _sel_last_record_id_callback()
202 assert (last_record_id); in ipmiseld_get_last_record_id()
204 last_record_id->loaded = 0; in ipmiseld_get_last_record_id()
784 … || last_record_id.record_id != host_data->last_host_state.last_record_id.record_id) in ipmiseld_check_sel_info()
814 if (last_record_id.loaded in ipmiseld_check_sel_info()
815 && last_record_id.record_id > host_data->last_host_state.last_record_id.record_id) in ipmiseld_check_sel_info()
884 if (last_record_id.loaded in ipmiseld_check_sel_info()
885 && host_data->last_host_state.last_record_id.record_id == last_record_id.record_id) in ipmiseld_check_sel_info()
910 if (last_record_id.loaded in ipmiseld_check_sel_info()
911 && last_record_id.record_id > host_data->last_host_state.last_record_id.record_id) in ipmiseld_check_sel_info()
[all …]
H A Dipmiseld-cache.c408 …unmarshall_uint16 (databuf + databuf_offset, &host_data->last_host_state.last_record_id.record_id);
409 host_data->last_host_state.last_record_id.loaded = 1;
518 …= _marshall_uint16 (databuf + databuf_offset, host_data->last_host_state.last_record_id.record_id);
H A Dipmiseld.h163 ipmiseld_last_record_id_t last_record_id; member
/dports/sysutils/bulk_extractor/bulk_extractor-2.0.0-beta2/src/
H A Dscan_evtx.cpp106 int64_t last_record_id; in check_evtxchunk_signature() local
117 last_record_id = sbuf.get64i(offset + 32); // Last Record ID in check_evtxchunk_signature()
118 if (last_record_id > 0) in check_evtxchunk_signature()
119 return last_record_id; in check_evtxchunk_signature()
153 int64_t last_record_id; in scan_evtx() local
184 last_record_id = result_last_record_id; in scan_evtx()
186 int64_t num_of_records = last_record_id - first_record_id +1; in scan_evtx()
191 last_record_id = result_last_record_id; in scan_evtx()
192 num_of_records += last_record_id - first_record_id +1; in scan_evtx()
203 header.part.next_record = last_record_id; in scan_evtx()
/dports/deskutils/myitcrm/MyITCRM-0.2.9.3/modules/expense/
H A Dnew.php14 $last_record_id = last_record_id_lookup($db); variable
15 $new_record_id = $last_record_id + 1;
H A Dinclude.php46 $last_record_id = $rs->fields['EXPENSE_ID'];
47 return $last_record_id;
/dports/deskutils/myitcrm/MyITCRM-0.2.9.3/modules/refund/
H A Dnew.php14 $last_record_id = last_record_id_lookup($db); variable
15 $new_record_id = $last_record_id + 1;
H A Dinclude.php46 $last_record_id = $rs->fields['REFUND_ID'];
47 return $last_record_id;
/dports/deskutils/myitcrm/MyITCRM-0.2.9.3/modules/supplier/
H A Dnew.php14 $last_record_id = last_record_id_lookup($db); variable
15 $new_record_id = $last_record_id + 1;
H A Dinclude.php46 $last_record_id = $rs->fields['SUPPLIER_ID'];
47 return $last_record_id;
/dports/www/py-fastapi/fastapi-0.70.0/docs_src/async_sql_databases/
H A Dtutorial001.py64 last_record_id = await database.execute(query)
65 return {**note.dict(), "id": last_record_id}
/dports/databases/py-unqlite/unqlite-0.5.3/
H A Dtests.py441 self.assertEqual(users.fetch(users.last_record_id()), {
446 self.assertEqual(users.fetch(users.last_record_id()), {
528 self.assertEqual(users.fetch(users.last_record_id()), {
559 res = coll.fetch(coll.last_record_id())
579 res = coll.fetch(coll.last_record_id())
H A DREADME.md178 >>> users.delete(users.last_record_id()) # Delete the last record.
H A Dunqlite.pyx1105 def last_record_id(self): member in Collection
/dports/www/py-fastapi/fastapi-0.70.0/docs/en/docs/advanced/
H A Dasync-sql-databases.md113 ### About `{**note.dict(), "id": last_record_id}`
136 And then, we extend that copy `dict`, adding another key-value pair: `"id": last_record_id`:
139 {**note.dict(), "id": last_record_id}
/dports/sysutils/freeipmi/freeipmi-1.6.8/ipmi-sel/
H A Dipmi-sel_.h151 uint16_t last_record_id; member
H A Dipmi-sel.c1721 &state_data->last_record_id) < 0) in _sel_record_id_last_callback()
2069 if ((state_data->last_record_id - state_data->first_record_id + 1) < entries) in _display_sel_records()
2073 if ((state_data->prog_data->args->tail_count + 1) >= state_data->last_record_id) in _display_sel_records()
2076 range_begin = state_data->last_record_id - state_data->prog_data->args->tail_count + 1; in _display_sel_records()
2082 spacing = (state_data->last_record_id - state_data->first_record_id + 1) / entries; in _display_sel_records()
2084 if ((state_data->prog_data->args->tail_count * spacing + 1) >= state_data->last_record_id) in _display_sel_records()
2087 …range_begin = state_data->last_record_id - (state_data->prog_data->args->tail_count * spacing) + 1; in _display_sel_records()
/dports/databases/py-unqlite/unqlite-0.5.3/docs/
H A Dapi.rst642 >>> users.delete(users.last_record_id()) # Delete the last record.
687 .. py:method:: last_record_id()
754 >>> users.update(users.last_record_id(), {'name': 'Chuck'})
756 >>> users.fetch(users.last_record_id())
772 >>> data.delete(data.last_record_id())
H A Dquickstart.rst145 >>> users.delete(users.last_record_id()) # Delete the last record.
/dports/misc/libpri/libpri-1.6.0/
H A Dpri_internal.h158 unsigned short last_record_id; member
H A Dpri_cc.c327 record_id = ++ctrl->cc.last_record_id; in pri_cc_new_id()
330 record_id = ++ctrl->cc.last_record_id; in pri_cc_new_id()