/openbmc/bmcweb/redfish-core/include/utils/extern/ |
H A D | date.h | 248 CONSTCD11 year_month operator/(const year& y, const month& m) NOEXCEPT; 249 CONSTCD11 year_month operator/(const year& y, int m) NOEXCEPT; 251 CONSTCD11 month_day operator/(const day& d, const month& m) NOEXCEPT; 252 CONSTCD11 month_day operator/(const day& d, int m) NOEXCEPT; 253 CONSTCD11 month_day operator/(const month& m, const day& d) NOEXCEPT; 254 CONSTCD11 month_day operator/(const month& m, int d) NOEXCEPT; 255 CONSTCD11 month_day operator/(int m, const day& d) NOEXCEPT; 257 CONSTCD11 month_day_last operator/(const month& m, last_spec) NOEXCEPT; 258 CONSTCD11 month_day_last operator/(int m, last_spec) NOEXCEPT; 259 CONSTCD11 month_day_last operator/(last_spec, const month& m) NOEXCEPT; [all …]
|
/openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/ |
H A D | TableRoles.vue | 8 <template #cell(operator)="data"> 42 operator: true, 51 operator: false, 60 operator: true, 69 operator: false, 78 operator: true, 94 key: 'operator', 95 label: i18n.global.t('pageUserManagement.tableRoles.operator'),
|
/openbmc/linux/tools/perf/util/ |
H A D | bpf-filter.l | 26 static int operator(enum perf_bpf_filter_op op) in operator() function 99 "==" { return operator(PBF_OP_EQ); } 100 "!=" { return operator(PBF_OP_NEQ); } 101 ">" { return operator(PBF_OP_GT); } 102 "<" { return operator(PBF_OP_LT); } 103 ">=" { return operator(PBF_OP_GE); } 104 "<=" { return operator(PBF_OP_LE); } 105 "&" { return operator(PBF_OP_AND); }
|
/openbmc/qemu/qga/vss-win32/ |
H A D | vss-common.h | 81 COMPointer &operator=(T *new_p) 97 operator T*() { return p; } 98 T *operator->(void) { return p; } 99 T &operator*(void) { return *p; } 100 operator bool() { return !!p; }
|
/openbmc/linux/scripts/coccinelle/misc/ |
H A D | minmax.cocci | 23 binary operator cmp = {>, >=}; 38 binary operator cmp = {>, >=}; 56 binary operator cmp = {<, <=}; 71 binary operator cmp = {<, <=}; 89 binary operator cmp = {>=, >}; 104 binary operator cmp = {>=, >}; 124 binary operator cmp = {<, <=}; 137 binary operator cmp = {<=, <}; 153 binary operator cmp = {<=, <};
|
H A D | array_size_dup.cocci | 29 assignment operator aop; 58 assignment operator aop; 94 assignment operator aop; 124 assignment operator aop; 158 assignment operator aop; 186 assignment operator aop;
|
/openbmc/linux/tools/perf/pmu-events/ |
H A D | metric.py | 115 def __init__(self, operator: str, lhs: Union[int, float, Expression], 117 self.operator = operator 145 if _PRECEDENCE.get(self.operator, -1) > _PRECEDENCE.get( 146 other.operator, -1): 148 if rhs and _PRECEDENCE.get(self.operator, -1) == _PRECEDENCE.get( 149 other.operator, -1): 165 return Constant(ast.literal_eval(lhs + self.operator + rhs)) 168 if self.operator in ('+', '|') and lhs.value == '0': 173 if self.operator == '*' and lhs.value == '0' and ( 177 if self.operator == '*' and lhs.value == '1': [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/debian/system/core/ |
H A D | Vector-cast.patch | 11 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const { 12 - VectorImpl::operator = (static_cast<const VectorImpl&>(rhs)); 13 + VectorImpl::operator = (rhs);
|
H A D | fix-attribute-issue-with-gcc.patch | 15 -std::ostream& operator<<(std::ostream& stream, const std::string* string_pointer) { 16 +inline std::ostream& operator<<(std::ostream& stream, const std::string* string_pointer) {
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools/debian/ |
H A D | Vector-cast.patch | 11 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const { 12 - VectorImpl::operator = (static_cast<const VectorImpl&>(rhs)); 13 + VectorImpl::operator = (rhs);
|
H A D | fix-attribute-issue-with-gcc.patch | 15 -std::ostream& operator<<(std::ostream& stream, const std::string* string_pointer) { 16 +inline std::ostream& operator<<(std::ostream& stream, const std::string* string_pointer) {
|
/openbmc/linux/kernel/trace/ |
H A D | trace_dynevent.c | 349 arg_pair->operator, arg_pair->rhs, in dynevent_arg_pair_add() 353 arg_pair->operator, arg_pair->rhs, in dynevent_arg_pair_add() 455 char operator, char separator) in dynevent_arg_pair_init() argument 459 if (!operator) in dynevent_arg_pair_init() 460 operator = ' '; in dynevent_arg_pair_init() 461 arg_pair->operator = operator; in dynevent_arg_pair_init()
|
H A D | trace_dynevent.h | 142 char operator; /* e.g. '=' or nothing */ member 147 char operator, char separator);
|
/openbmc/linux/Documentation/devicetree/bindings/powerpc/opal/ |
H A D | oppanel-opal.txt | 6 - #lines : Number of lines on the operator panel e.g. <0x2>. 7 - #length : Number of characters per line of the operator panel e.g. <0x10>.
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/vk-gl-cts/files/ |
H A D | fix-clang-private-operator.patch | 11 TPoolAllocator& operator=(const TPoolAllocator&); // don't allow assignment operator
|
/openbmc/boost-dbus/include/dbus/impl/ |
H A D | connection.ipp | 28 connection& operator=(const connection&) = delete; // non copyable 30 connection& operator=(connection&&) = delete; 84 operator DBusConnection*() { return conn; } 85 operator const DBusConnection*() const { return conn; }
|
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/ |
H A D | 0026-gcc-Fix-c-tweak-for-Wrange-loop-construct.patch | 64 + S& operator=(const S&) { return *this; }; 77 + S& operator=(const S&) { return *this; }; 90 + S& operator=(const S&) { return *this; }; 104 + S& operator=(const S&) { return *this; };
|
/openbmc/openbmc/meta-yadro/recipes-yadro/cli/ |
H A D | obmc-yadro-cli_git.bb | 39 --operator priv-operator \
|
/openbmc/openbmc-test-automation/openpower/ext_interfaces/ |
H A D | test_vmicert_management.robot | 41 # Send CSR request from operator user. 60 # Request root certificate from operator user. 81 # Send CSR request from operator user. 99 # Send CSR request from operator user. 120 # Request root certificate from operator user. 139 # Request root certificate from operator user. 385 ... csr from operator concurrently and verify gets root certificate and errors for corrupted 386 ... and for operator. 401 [Documentation] Get root certificate from operator and send corrupted csr request 402 ... and csr from admin and verify errors for operator and corrupted csr and signed certificate [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minifi-cpp/files/ |
H A D | 0001-libminifi-Rename-mutex_-to-mtx_-member-of-Concurrent.patch | 28 ConcurrentQueue& operator=(const ConcurrentQueue& other) = delete; 33 ConcurrentQueue& operator=(ConcurrentQueue&& other) {
|
/openbmc/openbmc/poky/meta/recipes-devtools/apt/apt/ |
H A D | 0001-Remove-using-std-binary_function.patch | 38 - inline bool operator() (const PackageMap &x,const PackageMap &y) 44 - inline bool operator() (const PackageMap &x,const PackageMap &y) 50 - inline bool operator() (const PackageMap &x,const PackageMap &y)
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/users/ |
H A D | phosphor-user-manager_git.bb | 51 GROUPADD_PARAM:${PN} = "priv-admin; priv-operator; priv-user " 52 GROUPADD_PARAM:phosphor-ldap = "priv-admin; priv-operator; priv-user "
|
/openbmc/qemu/scripts/ |
H A D | xml-preprocess.py | 154 for ifelif, tag, left, operator, right in matches: 155 if "<" in operator or ">" in operator:
|
/openbmc/openbmc-test-automation/redfish/account_service/ |
H A D | test_user_account.robot | 47 [Documentation] Verify Redfish operator user persistence after reboot. 86 [Documentation] Create a Redfish user with operator role and verify. 113 [Documentation] Verify Redfish operator user with wrong password. 140 [Documentation] Verify login with deleted Redfish operator user. 167 [Documentation] Verify operator user creation without enabling it. 245 [Documentation] Verify modifying operator user attributes. 361 [Documentation] Verify operator user role change using admin privilege user 369 # Change role ID of operator user with admin user. 384 [Documentation] Verify operator user privilege. 391 # Login with operator user. [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/oelib/ |
H A D | buildhistory.py | 11 import operator 152 for entry in sorted(result, key=operator.attrgetter("path")):
|